Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,19 @@
|
|
1 |
import streamlit as st
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
# Sidebar
|
4 |
st.sidebar.title("Suno")
|
5 |
st.sidebar.markdown("### Home")
|
@@ -62,9 +76,3 @@ st.sidebar.write("Select a song to preview.")
|
|
62 |
|
63 |
|
64 |
|
65 |
-
# Inject process methods steps and input
|
66 |
-
st.image("Suno.png")
|
67 |
-
prompt = 'Provide a development analysis of the layout of this html5 web app and create a streamlit python UI that duplicates exactly the layout features and text of each UI element. Generate unique keys for repeating elements like the thumbs up emoji which shows on multiple content lines. For content lines as well use st.columns or a table to align UI elements in rows to match image'
|
68 |
-
st.write('This example tests AIPP and GPT4o text and image prompts to take a screenshot and produce a one shot app using streamlit and python app.')
|
69 |
-
st.write('Prompt: ' + prompt)
|
70 |
-
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
+
|
4 |
+
|
5 |
+
|
6 |
+
# Inject process methods steps and input
|
7 |
+
st.write('This example tests AIPP and GPT4o text and image prompts to take a screenshot and produce a one shot app using streamlit and python app.')
|
8 |
+
st.image("Suno.png")
|
9 |
+
prompt = 'Provide a development analysis of the layout of this html5 web app and create a streamlit python UI that duplicates exactly the layout features and text of each UI element. Generate unique keys for repeating elements like the thumbs up emoji which shows on multiple content lines. For content lines as well use st.columns or a table to align UI elements in rows to match image'
|
10 |
+
st.write('Prompt: ' + prompt)
|
11 |
+
|
12 |
+
|
13 |
+
# --------------------------------------------
|
14 |
+
|
15 |
+
|
16 |
+
|
17 |
# Sidebar
|
18 |
st.sidebar.title("Suno")
|
19 |
st.sidebar.markdown("### Home")
|
|
|
76 |
|
77 |
|
78 |
|
|
|
|
|
|
|
|
|
|
|
|