chore: remove test script

This commit is contained in:
Nubenetes Bot
2026-05-14 18:30:40 +02:00
parent 2cbca0fbe0
commit 39e8f16bec

View File

@@ -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())