File size: 1,591 Bytes
b264622
 
bf47ce6
 
 
 
 
 
 
 
47ab876
 
 
bf47ce6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import streamlit as st

import pathlib
import textwrap
import requests
import google.generativeai as genai
import json



# VIDEO_URL = "https://example.com/not-youtube.mp4"
# st.video(VIDEO_URL)



genai.configure(api_key="AIzaSyCADQk7KaP90mSKslhtEC3qRjyeUVxBkvI")
model = genai.GenerativeModel('gemini-pro')

userInput = "Give me an afrofunk beat along with a cool melody and catchy drums, along with an opera style"
prompt = userInput + ". Output ONLY the specific music genre that the user would like that fits their requirements, with no excess words. Simply the genre, NO APOSTROPHES. If required, add more than one genre to best fit the user's prompt by adding a comma and space and a another genre. Desired Output: <all_lowercase_comma_separated_genres>"
response = model.generate_content(prompt)
genre = response.text

userInput = "Genre: " + genre + ". Generate lyrics that would best fit into the required genre. The lyrics should not be about the genre, but would best fit into the genre. Generate around 1 minutes worth of lyrics. Separate verses using [Verse #] and NO APOSTROPHES AT ALL. If you must use them, please remove them from the word, even if it mispells the word. Desired Format: <seperate_each_verse_no_asteriks_or_apostrophes>"
response = model.generate_content(userInput)
lyrics = response.text

lyricInput = "Lyrics: " + lyrics + ". Based upon the following lyrics, please generate a title for this song. Desired Format: <title_case_without_genre>"
response = model.generate_content(lyricInput)
title = response.text

print(str(title))
print(lyrics)
print(genre)