wt002 commited on
Commit
26dc796
·
verified ·
1 Parent(s): 3962ec1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -90,7 +90,7 @@ class BasicAgent:
90
  text = re.sub(r'\s+', ' ', text).strip()
91
  return text[:200] # Limit length while keeping context
92
 
93
- searcher = WikipediaFeaturedArticleSearcher()
94
  answer = searcher.get_dinosaur_fa_nominator()
95
  print(answer)
96
 
 
90
  text = re.sub(r'\s+', ' ', text).strip()
91
  return text[:200] # Limit length while keeping context
92
 
93
+ searcher = BasicAgent()
94
  answer = searcher.get_dinosaur_fa_nominator()
95
  print(answer)
96