Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -26,7 +26,7 @@ class BasicAgent:
|
|
| 26 |
|
| 27 |
async def run(self, question: str) -> str:
|
| 28 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
| 29 |
-
answer = await
|
| 30 |
print(f"Agent returning answer: {answer}")
|
| 31 |
return answer
|
| 32 |
|
|
|
|
| 26 |
|
| 27 |
async def run(self, question: str) -> str:
|
| 28 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
| 29 |
+
#answer = await smart_agent(question, self.api_key)
|
| 30 |
print(f"Agent returning answer: {answer}")
|
| 31 |
return answer
|
| 32 |
|