Spaces:
Sleeping
Sleeping
set api
Browse files
app.py
CHANGED
@@ -73,14 +73,14 @@ topic = st.text_area("Enter the topic or initial text", placeholder="Type your t
|
|
73 |
# Dropdown for selecting the desired output format.
|
74 |
output_format = st.selectbox(
|
75 |
"Select the output format",
|
76 |
-
options=["
|
77 |
index=0
|
78 |
)
|
79 |
|
80 |
# Dropdown for selecting the desired tone or style.
|
81 |
tone = st.selectbox(
|
82 |
"Select the tone or style",
|
83 |
-
options=["
|
84 |
index=0
|
85 |
)
|
86 |
|
|
|
73 |
# Dropdown for selecting the desired output format.
|
74 |
output_format = st.selectbox(
|
75 |
"Select the output format",
|
76 |
+
options=["Story", "Poem", "Article", "Code"],
|
77 |
index=0
|
78 |
)
|
79 |
|
80 |
# Dropdown for selecting the desired tone or style.
|
81 |
tone = st.selectbox(
|
82 |
"Select the tone or style",
|
83 |
+
options=["Formal", "Informal", "Humorous", "Technical"],
|
84 |
index=0
|
85 |
)
|
86 |
|