azettl commited on
Commit
91b73c1
·
1 Parent(s): 6416409

remove paper fill

Browse files
Files changed (1) hide show
  1. research_tools/scholar_search.py +0 -8
research_tools/scholar_search.py CHANGED
@@ -34,14 +34,6 @@ class GoogleScholarTool(BaseTool):
34
  for i, paper in enumerate(search_query):
35
  if i >= max_results:
36
  break
37
- # Try to get additional info if available
38
- try:
39
- # Some papers might need to be filled for complete info
40
- if hasattr(paper, 'fill') and callable(paper.fill):
41
- paper = paper.fill()
42
- except:
43
- # If fill fails, use paper as-is
44
- pass
45
  papers.append(paper)
46
 
47
  if papers:
 
34
  for i, paper in enumerate(search_query):
35
  if i >= max_results:
36
  break
 
 
 
 
 
 
 
 
37
  papers.append(paper)
38
 
39
  if papers: