fixed typo
Browse files
app.py
CHANGED
@@ -91,7 +91,7 @@ class BasicAgent:
|
|
91 |
def __call__(self, question: str) -> str:
|
92 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
93 |
#fixed_answer = "This is a default answer."
|
94 |
-
fixed_answer = agent.run(
|
95 |
print(f"Agent returning fixed answer: {fixed_answer}")
|
96 |
return fixed_answer
|
97 |
|
|
|
91 |
def __call__(self, question: str) -> str:
|
92 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
93 |
#fixed_answer = "This is a default answer."
|
94 |
+
fixed_answer = agent.run(question)
|
95 |
print(f"Agent returning fixed answer: {fixed_answer}")
|
96 |
return fixed_answer
|
97 |
|