Commit
·
3bb778c
1
Parent(s):
2e808c4
changes
Browse files
app.py
CHANGED
@@ -1,4 +1,8 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
-
|
4 |
-
st.
|
|
|
|
|
|
|
|
|
|
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)
|