Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -10,11 +10,9 @@ import arxiv
|
|
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)
|
|
|
10 |
|
11 |
st.title("ArXiV Audio")
|
12 |
|
|
|
|
|
13 |
with st.form(key = "search_form"):
|
14 |
query = st.text_input("Search Paper")
|
15 |
+
sort_by = st.selectbox(label = "Sort By", ('Relevance', 'Last Updated Date','Submitted Date'))
|
16 |
+
order_by = st.selectbox(label = "Order By", ('Ascending', 'Descending'))
|
17 |
submit = st.form_submit_button(label = "Submit this form")
|
18 |
+
|
|
|
|