Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -11,8 +11,12 @@ import arxiv
|
|
11 |
st.title("ArXiV Audio")
|
12 |
|
13 |
with st.form(key = "search_form"):
|
14 |
-
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
17 |
submit = st.form_submit_button(label = "Submit this form")
|
18 |
|
|
|
11 |
st.title("ArXiV Audio")
|
12 |
|
13 |
with st.form(key = "search_form"):
|
14 |
+
col1, col2, col3 = st.beta_columns(3)
|
15 |
+
with col1:
|
16 |
+
query = st.text_input("Search Paper")
|
17 |
+
with col2:
|
18 |
+
sort_by = st.selectbox(label = "Sort By", options=('Relevance', 'Last Updated Date','Submitted Date'))
|
19 |
+
with col3:
|
20 |
+
order_by = st.selectbox(label = "Order By", options=('Ascending', 'Descending'))
|
21 |
submit = st.form_submit_button(label = "Submit this form")
|
22 |
|