Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -29,7 +29,7 @@ class BasicAgent:
|
|
| 29 |
|
| 30 |
def __call__(self, question: str) -> str:
|
| 31 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
| 32 |
-
fixed_answer =
|
| 33 |
print(f"Agent returning fixed answer: {fixed_answer}")
|
| 34 |
return fixed_answer
|
| 35 |
|
|
|
|
| 29 |
|
| 30 |
def __call__(self, question: str) -> str:
|
| 31 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
| 32 |
+
fixed_answer = self.agent.run(question)
|
| 33 |
print(f"Agent returning fixed answer: {fixed_answer}")
|
| 34 |
return fixed_answer
|
| 35 |
|