Update app.py
Browse files
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
|