mherlie commited on
Commit
b7f8d07
·
1 Parent(s): 07de355
Files changed (1) hide show
  1. app.py +2 -2
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=["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
 
 
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