Sagicc commited on
Commit
2707865
·
verified ·
1 Parent(s): fbe170c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -29,7 +29,7 @@ class BasicAgent:
29
 
30
  def __call__(self, question: str) -> str:
31
  print(f"Agent received question (first 50 chars): {question[:50]}...")
32
- fixed_answer = "This is a default answer."
33
  print(f"Agent returning fixed answer: {fixed_answer}")
34
  return fixed_answer
35
 
 
29
 
30
  def __call__(self, question: str) -> str:
31
  print(f"Agent received question (first 50 chars): {question[:50]}...")
32
+ fixed_answer = self.agent.run(question)
33
  print(f"Agent returning fixed answer: {fixed_answer}")
34
  return fixed_answer
35