Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -30,14 +30,13 @@ with st.form("my_form"):
|
|
30 |
st.write("What do want to know about sangam era's love?")
|
31 |
|
32 |
toggle = st.checkbox('sample queries')
|
33 |
-
|
34 |
-
if toggle:
|
35 |
question_input = st.selectbox('select a query:',
|
36 |
("How was love marriage celebrated in the Sangam era, as mentioned in Akananuru?",
|
37 |
"How did the heroine express her longing to her friend, as captured in Ainkurunuru?",
|
38 |
"What makes love stronger and everlasting, according to Thirukkural?",))
|
39 |
|
40 |
-
|
41 |
question_input = st.text_input("")
|
42 |
|
43 |
|
|
|
30 |
st.write("What do want to know about sangam era's love?")
|
31 |
|
32 |
toggle = st.checkbox('sample queries')
|
33 |
+
if toggle:
|
|
|
34 |
question_input = st.selectbox('select a query:',
|
35 |
("How was love marriage celebrated in the Sangam era, as mentioned in Akananuru?",
|
36 |
"How did the heroine express her longing to her friend, as captured in Ainkurunuru?",
|
37 |
"What makes love stronger and everlasting, according to Thirukkural?",))
|
38 |
|
39 |
+
else:
|
40 |
question_input = st.text_input("")
|
41 |
|
42 |
|