debisoft commited on
Commit
ecc5667
·
1 Parent(s): 8d4dd76

fixed typo

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -91,7 +91,7 @@ class BasicAgent:
91
  def __call__(self, question: str) -> str:
92
  print(f"Agent received question (first 50 chars): {question[:50]}...")
93
  #fixed_answer = "This is a default answer."
94
- fixed_answer = agent.run(questions)
95
  print(f"Agent returning fixed answer: {fixed_answer}")
96
  return fixed_answer
97
 
 
91
  def __call__(self, question: str) -> str:
92
  print(f"Agent received question (first 50 chars): {question[:50]}...")
93
  #fixed_answer = "This is a default answer."
94
+ fixed_answer = agent.run(question)
95
  print(f"Agent returning fixed answer: {fixed_answer}")
96
  return fixed_answer
97