Spaces:
Sleeping
Sleeping
BenBranyon
commited on
Commit
•
71cc4ac
1
Parent(s):
a807158
Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ def query(payload):
|
|
12 |
messages = st.container()
|
13 |
if prompt := st.chat_input("Subject of the song"):
|
14 |
output = query({
|
15 |
-
"inputs": "
|
16 |
})
|
17 |
messages.chat_message("user").write(prompt)
|
18 |
-
messages.chat_message("assistant").write(f"Echo: {
|
|
|
12 |
messages = st.container()
|
13 |
if prompt := st.chat_input("Subject of the song"):
|
14 |
output = query({
|
15 |
+
"inputs": "Write a rap in the style of the artist Sum about " + prompt,
|
16 |
})
|
17 |
messages.chat_message("user").write(prompt)
|
18 |
+
messages.chat_message("assistant").write(f"Echo: {output}")
|