susmitsil commited on
Commit
9801bc9
·
verified ·
1 Parent(s): 54caba4
Files changed (1) hide show
  1. gemini_agent.py +1 -0
gemini_agent.py CHANGED
@@ -386,6 +386,7 @@ Response:"""
386
  match_id = int(response.content.strip())
387
 
388
  if match_id >= 0 and match_id < len(valid_questions):
 
389
  return valid_questions[match_id]['answer']
390
 
391
  return None
 
386
  match_id = int(response.content.strip())
387
 
388
  if match_id >= 0 and match_id < len(valid_questions):
389
+ print(f"Match found for query: {query}")
390
  return valid_questions[match_id]['answer']
391
 
392
  return None