From ddac24e6c9a44c8c658783fa2805415ea0e8e2d1 Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Wed, 29 Oct 2025 16:17:05 -0400 Subject: [PATCH] Fix a missing space in a warning message --- src/pipecat/services/openai/realtime/llm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/services/openai/realtime/llm.py b/src/pipecat/services/openai/realtime/llm.py index f9e8b1a3f..012604eb8 100644 --- a/src/pipecat/services/openai/realtime/llm.py +++ b/src/pipecat/services/openai/realtime/llm.py @@ -888,7 +888,7 @@ class OpenAIRealtimeLLMService(LLMService): "Also, LLMTextFrames are no longer pushed from " "OpenAIRealtimeLLMService when it's configured with " "output_modalities=['audio']. Listen for TTSTextFrames instead.\n\n" - "Once you've made the appropriate changes (if needed), you can" + "Once you've made the appropriate changes (if needed), you can " "dismiss this warning by updating to the new context-setup pattern:\n\n" " context = LLMContext(messages, tools)\n" " context_aggregator = LLMContextAggregatorPair(context)\n"