Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -22,7 +22,7 @@ class BasicAgent:
|
|
| 22 |
print("GeminiAgent initialized successfully")
|
| 23 |
|
| 24 |
def __call__(self, question: str) -> str:
|
| 25 |
-
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
| 26 |
final_answer = self.agent.run(question)
|
| 27 |
print(f"Agent returning fixed answer: {final_answer}")
|
| 28 |
return final_answer
|
|
|
|
| 22 |
print("GeminiAgent initialized successfully")
|
| 23 |
|
| 24 |
def __call__(self, question: str) -> str:
|
| 25 |
+
print(f">>Agent received question (first 50 chars): {question[:50]}...")
|
| 26 |
final_answer = self.agent.run(question)
|
| 27 |
print(f"Agent returning fixed answer: {final_answer}")
|
| 28 |
return final_answer
|