chaseharmon commited on
Commit
3bb778c
·
1 Parent(s): 2e808c4
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -1,4 +1,8 @@
1
  import streamlit as st
2
 
3
- x = st.slider('Select a value')
4
- st.write(x, 'squared is', x * x)
 
 
 
 
 
1
  import streamlit as st
2
 
3
+ st.title("Rap Verse Generation V1 Demo")
4
+ st.header("Supported Artists")
5
+ st.write("Lupe Fiasco, Common, Jay-Z, Yasiin Bey, Ab-Soul, Rakim")
6
+
7
+ prompt = st.chat_input("Write a verse in the style of Lupe Fiasco")
8
+ st.write(prompt)