Spaces:
Sleeping
Sleeping
Pedro Gengo
commited on
Commit
·
4074cac
1
Parent(s):
4025c5d
Adding app
Browse files
app.py
CHANGED
@@ -37,9 +37,11 @@ demo = gr.Interface(
|
|
37 |
search_nearest_papers,
|
38 |
[
|
39 |
"text",
|
40 |
-
gr.Slider(1, 10,
|
41 |
],
|
42 |
-
|
|
|
|
|
43 |
)
|
44 |
|
45 |
if __name__ == "__main__":
|
|
|
37 |
search_nearest_papers,
|
38 |
[
|
39 |
"text",
|
40 |
+
gr.Slider(1, 10, value=5),
|
41 |
],
|
42 |
+
gr.Dataframe(
|
43 |
+
headers=["Title", "Summary", "PDF"],
|
44 |
+
)
|
45 |
)
|
46 |
|
47 |
if __name__ == "__main__":
|