Spaces:
Sleeping
Sleeping
Clean up a bit
Browse files
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):
|