GatinhoEducado commited on
Commit
83efcd7
·
verified ·
1 Parent(s): 83e7c37

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -56,7 +56,7 @@ class BasicAgent:
56
  def __call__(self, question: str) -> str:
57
  print(f"Agent received question (first 50 chars): {question[:50]}...")
58
 
59
- fixed_answer = agent.run(question)
60
 
61
  #fixed_answer = "This is a default answer."
62
  print(f"Agent returning fixed answer: {fixed_answer}")
 
56
  def __call__(self, question: str) -> str:
57
  print(f"Agent received question (first 50 chars): {question[:50]}...")
58
 
59
+ fixed_answer = self.agent.run(question)
60
 
61
  #fixed_answer = "This is a default answer."
62
  print(f"Agent returning fixed answer: {fixed_answer}")