Spaces:
Runtime error
Runtime error
Commit
·
fa8d7c8
1
Parent(s):
ef9e60e
Update app.py
Browse files
app.py
CHANGED
@@ -128,9 +128,9 @@ and further improvements on the Arrangement (suggested by the Sound Engineer)
|
|
128 |
|
129 |
import gradio as gr
|
130 |
|
131 |
-
description = '''
|
|
|
132 |
|
133 |
-
<span style="font-family:Papyrus; font-size:4em;">
|
134 |
Given specific Genre, Keywords, and Emotion, make a Brand New Song without lifting a finger!
|
135 |
|
136 |
1. Get lyrics of a new song
|
@@ -141,7 +141,6 @@ Given specific Genre, Keywords, and Emotion, make a Brand New Song without lifti
|
|
141 |
|
142 |
## AI Music Team is composed of several GPT agents with the following "personas" -
|
143 |
|
144 |
-
<font size=3.5>
|
145 |
1. Experienced Music Director who has 15+ Years experience in the industry
|
146 |
2. Experienced Lyricist, who has written hit songs in several languages
|
147 |
3. Experienced Freelance Lyricist, who has helped writing songs in several languages
|
@@ -151,7 +150,6 @@ Given specific Genre, Keywords, and Emotion, make a Brand New Song without lifti
|
|
151 |
|
152 |
## Workflow (Intermediate outputs/results are output as downloadable files) -
|
153 |
|
154 |
-
<font size=3.5>
|
155 |
1. Get Inputs from user (OpenAI API Endpoint, API Key, keywords, genre, emotion for the song). Check out [this link](https://platform.openai.com/account/api-keys) to get your API Key
|
156 |
2. Experienced Freelance Lyricist writes a lyrics draft (**see `step_2.txt`**)
|
157 |
3. Experienced Music Director and Experienced Lyricist provide feedback (**see `step_3A.txt` & `step_3B.txt` respectively**)
|
@@ -159,7 +157,7 @@ Given specific Genre, Keywords, and Emotion, make a Brand New Song without lifti
|
|
159 |
5. Experienced Music Composer will provide a chord progression, and an arrangement of instruments (**see `step_5.txt`**)
|
160 |
6. Experienced Sound Engineer will provide ways to improve on the existing arrangement (**see `step_6.txt`**)
|
161 |
7. Finally, Music Director will provide improvements (**see `step_7.txt`**), resulting in the **final Chord Progression, Arrangement, and Song Title**
|
162 |
-
</
|
163 |
'''
|
164 |
|
165 |
demo = gr.Interface(title = 'Write and Compose brand new Songs using an Elite *AI Music Team*', description = description,
|
|
|
128 |
|
129 |
import gradio as gr
|
130 |
|
131 |
+
description = '''<span style="font-family:Papyrus; font-size:3.5em;">
|
132 |
+
## Objective -
|
133 |
|
|
|
134 |
Given specific Genre, Keywords, and Emotion, make a Brand New Song without lifting a finger!
|
135 |
|
136 |
1. Get lyrics of a new song
|
|
|
141 |
|
142 |
## AI Music Team is composed of several GPT agents with the following "personas" -
|
143 |
|
|
|
144 |
1. Experienced Music Director who has 15+ Years experience in the industry
|
145 |
2. Experienced Lyricist, who has written hit songs in several languages
|
146 |
3. Experienced Freelance Lyricist, who has helped writing songs in several languages
|
|
|
150 |
|
151 |
## Workflow (Intermediate outputs/results are output as downloadable files) -
|
152 |
|
|
|
153 |
1. Get Inputs from user (OpenAI API Endpoint, API Key, keywords, genre, emotion for the song). Check out [this link](https://platform.openai.com/account/api-keys) to get your API Key
|
154 |
2. Experienced Freelance Lyricist writes a lyrics draft (**see `step_2.txt`**)
|
155 |
3. Experienced Music Director and Experienced Lyricist provide feedback (**see `step_3A.txt` & `step_3B.txt` respectively**)
|
|
|
157 |
5. Experienced Music Composer will provide a chord progression, and an arrangement of instruments (**see `step_5.txt`**)
|
158 |
6. Experienced Sound Engineer will provide ways to improve on the existing arrangement (**see `step_6.txt`**)
|
159 |
7. Finally, Music Director will provide improvements (**see `step_7.txt`**), resulting in the **final Chord Progression, Arrangement, and Song Title**
|
160 |
+
</span>
|
161 |
'''
|
162 |
|
163 |
demo = gr.Interface(title = 'Write and Compose brand new Songs using an Elite *AI Music Team*', description = description,
|