Iamvincent commited on
Commit
86ba500
·
verified ·
1 Parent(s): bbc2e70

Update app.py

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