diff --git a/src/codegate/providers/ollama/completion_handler.py b/src/codegate/providers/ollama/completion_handler.py index f569d988..49fbc103 100644 --- a/src/codegate/providers/ollama/completion_handler.py +++ b/src/codegate/providers/ollama/completion_handler.py @@ -16,7 +16,6 @@ async def ollama_stream_generator( """OpenAI-style SSE format""" try: async for chunk in stream: - print(chunk) try: yield f"{chunk.model_dump_json()}\n\n" except Exception as e: