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