Spaces:
Running
on
Zero
Running
on
Zero
Update main.py
Browse files
main.py
CHANGED
@@ -30,8 +30,8 @@ def search(query, k):
|
|
30 |
search_results = ""
|
31 |
|
32 |
for i in range(k):
|
33 |
-
search_results += '### ' + top_five["bib_dict"].values[i]["title"] + '\n'
|
34 |
-
search_results += top_five["bib_dict"].values[i]["citation"] + "\n\n"
|
35 |
if top_five["pub_url"].values[i] is not None:
|
36 |
search_results += "[Full Text](" + top_five["pub_url"].values[i] + ") "
|
37 |
if top_five["citedby_url"].values[i] is not None:
|
|
|
30 |
search_results = ""
|
31 |
|
32 |
for i in range(k):
|
33 |
+
search_results += '### ' + top_five["bib_dict"].values[i]["title"] + '\n\n'
|
34 |
+
# search_results += top_five["bib_dict"].values[i]["citation"] + "\n\n"
|
35 |
if top_five["pub_url"].values[i] is not None:
|
36 |
search_results += "[Full Text](" + top_five["pub_url"].values[i] + ") "
|
37 |
if top_five["citedby_url"].values[i] is not None:
|