cowrycode commited on
Commit
c71e8e4
·
verified ·
1 Parent(s): 174b746

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -45,8 +45,8 @@ class BasicAgent:
45
  return answer
46
 
47
  def __call__(self, question: str) -> str:
48
- return asyncio.run(self.run(question))
49
- #return self.run(question)
50
  #return self.agent.run(question)
51
 
52
 
 
45
  return answer
46
 
47
  def __call__(self, question: str) -> str:
48
+ #return asyncio.run(self.run(question))
49
+ return self.run(question)
50
  #return self.agent.run(question)
51
 
52