Update app.py
Browse files
app.py
CHANGED
@@ -36,7 +36,7 @@ class BasicAgent:
|
|
36 |
|
37 |
def __call__(self, question: str) -> str:
|
38 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
39 |
-
final_answer = self.
|
40 |
print(f"Agent returning fixed answer: {final_answer}")
|
41 |
return final_answer
|
42 |
|
|
|
36 |
|
37 |
def __call__(self, question: str) -> str:
|
38 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
39 |
+
final_answer = self.agent.run(question)
|
40 |
print(f"Agent returning fixed answer: {final_answer}")
|
41 |
return final_answer
|
42 |
|