TRIEM_AI / debug_brain_full.py
rzvn1's picture
Initial commit of TRIEM AI
3017127
Raw
History Blame Contribute Delete
334 Bytes
from src.brain import get_gemini_response
import logging
# Configure logging
logging.basicConfig(level=logging.INFO)
print("Testing brain.get_gemini_response...")
try:
response = get_gemini_response("What is the capital of India?")
print(f"FINAL RESULT: {response}")
except Exception as e:
print(f"CRITICAL FAIL: {e}")