BenBranyon commited on
Commit
5e0fedd
1 Parent(s): 49c1ab1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -47,7 +47,7 @@ if prompt := st.chat_input("Subject of the song"):
47
  st.session_state.messages.append({"role": "user", "content": prompt})
48
  with st.chat_message("user"):
49
  st.markdown(prompt)
50
- prompt = f"Write a rap in the style of the artist Sumkilla about {prompt}"
51
  with st.spinner(text=f"Generating lyrics..."):
52
  output = query(prompt)
53
  st.session_state.messages.append({"role": "assistant", "content": output})
 
47
  st.session_state.messages.append({"role": "user", "content": prompt})
48
  with st.chat_message("user"):
49
  st.markdown(prompt)
50
+ prompt = f"Write a rap about {prompt}"
51
  with st.spinner(text=f"Generating lyrics..."):
52
  output = query(prompt)
53
  st.session_state.messages.append({"role": "assistant", "content": output})