Update app.py
Browse files
app.py
CHANGED
@@ -62,13 +62,12 @@ def main():
|
|
62 |
time_slider = st.slider("Select time duration (seconds)", 2, 20, 10)
|
63 |
|
64 |
if text_area and time_slider:
|
65 |
-
st.json(
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
st.write("We will back with your music....please enjoy doing the rest of your tasks while we come back in some time :)")
|
71 |
-
)
|
72 |
st.subheader("Generated Music")
|
73 |
music_tensors = generate_music_tensors(text_area, time_slider)
|
74 |
|
|
|
62 |
time_slider = st.slider("Select time duration (seconds)", 2, 20, 10)
|
63 |
|
64 |
if text_area and time_slider:
|
65 |
+
st.json({
|
66 |
+
"Description": text_area,
|
67 |
+
"Selected duration": time_slider
|
68 |
+
})
|
69 |
+
|
70 |
st.write("We will back with your music....please enjoy doing the rest of your tasks while we come back in some time :)")
|
|
|
71 |
st.subheader("Generated Music")
|
72 |
music_tensors = generate_music_tensors(text_area, time_slider)
|
73 |
|