AntonVoronko commited on
Commit
68e56c4
·
verified ·
1 Parent(s): 09dca78

Clean up a bit

Browse files
Files changed (1) hide show
  1. app.py +0 -2
app.py CHANGED
@@ -37,8 +37,6 @@ class BasicAgent:
37
  async def __call__(self, question: str) -> str:
38
  print(f"Agent received question (first 50 chars): {question[:50]}...")
39
  fixed_answer = await self.agent.run(question)
40
- # print(fixed_answer.response.content)
41
- # print(f"Agent returning fixed answer: {fixed_answer}")
42
  return fixed_answer.response.content
43
 
44
  def run_and_submit_all( profile: gr.OAuthProfile | None):
 
37
  async def __call__(self, question: str) -> str:
38
  print(f"Agent received question (first 50 chars): {question[:50]}...")
39
  fixed_answer = await self.agent.run(question)
 
 
40
  return fixed_answer.response.content
41
 
42
  def run_and_submit_all( profile: gr.OAuthProfile | None):