From ebc49d2252d4b87ec8fc621a8df2f2522c552ce3 Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Tue, 12 Aug 2025 14:39:01 -0400 Subject: [PATCH] [WIP] Universal (LLM-agnostic) context machinery to support runtime LLM switching. - Add a "universal" alias for `OpenAILLMContextAssistantTimestampFrame`: `LLMContextAssistantTimestampFrame` --- src/pipecat/frames/frames.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pipecat/frames/frames.py b/src/pipecat/frames/frames.py index afd057029..1e30f265b 100644 --- a/src/pipecat/frames/frames.py +++ b/src/pipecat/frames/frames.py @@ -403,6 +403,9 @@ class OpenAILLMContextAssistantTimestampFrame(DataFrame): timestamp: str +# A more universal (LLM-agnostic) name for +# OpenAILLMContextAssistantTimestampFrame, matching LLMContext +LLMContextAssistantTimestampFrame = OpenAILLMContextAssistantTimestampFrame @dataclass class TranscriptionMessage: