first agent test
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 |
-
answer =
|
| 23 |
print(f"Agent returning fixed answer: {answer}")
|
| 24 |
return answer
|
| 25 |
|
|
|
|
| 19 |
|
| 20 |
def __call__(self, question: str) -> str:
|
| 21 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
| 22 |
+
answer = run_agent(question)
|
| 23 |
print(f"Agent returning fixed answer: {answer}")
|
| 24 |
return answer
|
| 25 |
|