Spaces:
Running
Running
Commit
Β·
3ed837b
1
Parent(s):
06359ea
Update pages/All-in-One Script Writing Tool.py
Browse files
pages/All-in-One Script Writing Tool.py
CHANGED
@@ -33,7 +33,9 @@ st.sidebar.image('./video2.png',width=300, use_column_width=True)
|
|
33 |
|
34 |
# Captures User Inputs
|
35 |
prompt = st.text_input('Please provide the topic of the video',key="prompt") # The box for the text prompt
|
36 |
-
video_length = st.text_input('Expected Video Length π (in minutes)',key="video_length") # The box for the text prompt
|
|
|
|
|
37 |
creativity = st.slider('Creativity Meter β¨ - (0 LOW || 1 HIGH)', 0.0, 1.0, 0.2,step=0.1)
|
38 |
|
39 |
tasktype = st.radio(
|
|
|
33 |
|
34 |
# Captures User Inputs
|
35 |
prompt = st.text_input('Please provide the topic of the video',key="prompt") # The box for the text prompt
|
36 |
+
#video_length = st.text_input('Expected Video Length π (in minutes)',key="video_length") # The box for the text prompt
|
37 |
+
video_length = st.number_input('Expected Video Length π (in minutes)',key="video_length") # The box for the text prompt
|
38 |
+
|
39 |
creativity = st.slider('Creativity Meter β¨ - (0 LOW || 1 HIGH)', 0.0, 1.0, 0.2,step=0.1)
|
40 |
|
41 |
tasktype = st.radio(
|