BenBranyon commited on
Commit
71cc4ac
1 Parent(s): a807158

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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": "Who are you?",
16
  })
17
  messages.chat_message("user").write(prompt)
18
- messages.chat_message("assistant").write(f"Echo: {prompt}")
 
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}")