ccm commited on
Commit
9785572
·
verified ·
1 Parent(s): 8a49470

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +2 -2
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: