cowrycode commited on
Commit
44323e4
·
verified ·
1 Parent(s): f50b8fb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 asyncio.run(smart_agent(question, self.api_key))
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