From 39e8f16becac009a9ac9c8d536d2628981e2088e Mon Sep 17 00:00:00 2001 From: Nubenetes Bot Date: Thu, 14 May 2026 18:30:40 +0200 Subject: [PATCH] chore: remove test script --- test_gemini.py | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 test_gemini.py diff --git a/test_gemini.py b/test_gemini.py deleted file mode 100644 index 3322a59a..00000000 --- a/test_gemini.py +++ /dev/null @@ -1,12 +0,0 @@ -import asyncio -from src.gemini_utils import call_gemini_with_retry - -async def test(): - try: - res = await call_gemini_with_retry("Hola, responde con la palabra 'OK' si recibes esto.") - print(f"Resultado: {res}") - except Exception as e: - print(f"Error: {e}") - -if __name__ == "__main__": - asyncio.run(test())