From 40557a1aae920f6ce59de07f9f4aeb689fe3ace5 Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Wed, 20 Aug 2025 10:01:37 -0400 Subject: [PATCH] Remove TODO comment --- src/pipecat/processors/aggregators/llm_context.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pipecat/processors/aggregators/llm_context.py b/src/pipecat/processors/aggregators/llm_context.py index 7b37f7e4d..f4128c91e 100644 --- a/src/pipecat/processors/aggregators/llm_context.py +++ b/src/pipecat/processors/aggregators/llm_context.py @@ -178,7 +178,6 @@ class LLMContext: """ buffer = io.BytesIO() Image.frombytes(format, size, image).save(buffer, format="JPEG") - # TODO: we might not want the universal format to be base64 encoded, since encoding is not needed by all LLM services; today, te Gemini adapter has to decode from base64, which is less than ideal. encoded_image = base64.b64encode(buffer.getvalue()).decode("utf-8") content = []