kschuette commited on
Commit
239e8fd
·
verified ·
1 Parent(s): 941a802

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -21,7 +21,7 @@ class BasicAgent:
21
  print("BasicAgent initialized.")
22
  def __call__(self, question: str) -> str:
23
  print(f"Agent received question (first 50 chars): {question[:50]}...")
24
- fixed_answer = "This is a default answer."
25
  print(f"Agent returning fixed answer: {fixed_answer}")
26
  return fixed_answer
27
 
 
21
  print("BasicAgent initialized.")
22
  def __call__(self, question: str) -> str:
23
  print(f"Agent received question (first 50 chars): {question[:50]}...")
24
+ fixed_answer = self.agent.run(question)
25
  print(f"Agent returning fixed answer: {fixed_answer}")
26
  return fixed_answer
27