annapurnapadmaprema-ji commited on
Commit
6474fcc
·
verified ·
1 Parent(s): 19b6f85

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -6
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
- "Description": text_area,
68
- "Selected duration": time_slider
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