mrks89 commited on
Commit
9c1fba3
·
verified ·
1 Parent(s): ff754fc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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