Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,13 @@ import arxiv
|
|
8 |
#from get_pages import get_pages
|
9 |
#from tts import tts
|
10 |
|
|
|
|
|
11 |
text = st.text_area("Search For Paper")
|
12 |
|
|
|
|
|
|
|
|
|
13 |
if text:
|
14 |
st.write(text)
|
|
|
8 |
#from get_pages import get_pages
|
9 |
#from tts import tts
|
10 |
|
11 |
+
st.title("ArXiV Audio")
|
12 |
+
|
13 |
text = st.text_area("Search For Paper")
|
14 |
|
15 |
+
with st.form(key = "search_form"):
|
16 |
+
query = st.text_input("Search Paper")
|
17 |
+
submit = st.form_submit_button(label = "Submit this form")
|
18 |
+
|
19 |
if text:
|
20 |
st.write(text)
|