From 1c26c635a1b48d63c861cd5136f4c3faa4b17825 Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Thu, 21 May 2026 14:54:45 -0400 Subject: [PATCH] feat: default realtime to True in Inception LLM service --- src/pipecat/services/inception/llm.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pipecat/services/inception/llm.py b/src/pipecat/services/inception/llm.py index 6a06810fa..e451fbf9b 100644 --- a/src/pipecat/services/inception/llm.py +++ b/src/pipecat/services/inception/llm.py @@ -27,6 +27,7 @@ class InceptionLLMSettings(BaseOpenAILLMService.Settings): One of "instant", "low", "medium", or "high". When unset, the parameter is omitted and Inception's server-side default applies. realtime: When True, reduces time to first diffusion block (TTFT). + Defaults to True. """ reasoning_effort: Literal["instant", "low", "medium", "high"] | None | _NotGiven = field( @@ -68,7 +69,7 @@ class InceptionLLMService(OpenAILLMService): default_settings = self.Settings( model="mercury-2", reasoning_effort=None, - realtime=None, + realtime=True, ) if settings is not None: