From acb3e214321895b32d4ae7d7ad133a7fad91fc21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Tue, 10 Dec 2024 10:57:42 -0800 Subject: [PATCH] rtvi: update protocol version to 0.3.0 --- src/pipecat/processors/frameworks/rtvi.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pipecat/processors/frameworks/rtvi.py b/src/pipecat/processors/frameworks/rtvi.py index d676df72a..471bdbb88 100644 --- a/src/pipecat/processors/frameworks/rtvi.py +++ b/src/pipecat/processors/frameworks/rtvi.py @@ -39,7 +39,6 @@ from pipecat.frames.frames import ( SystemFrame, TextFrame, TranscriptionFrame, - TransportMessageFrame, TransportMessageUrgentFrame, TTSStartedFrame, TTSStoppedFrame, @@ -59,7 +58,7 @@ from pipecat.processors.aggregators.openai_llm_context import ( from pipecat.processors.frame_processor import FrameDirection, FrameProcessor from pipecat.utils.string import match_endofsentence -RTVI_PROTOCOL_VERSION = "0.2" +RTVI_PROTOCOL_VERSION = "0.3.0" ActionResult = Union[bool, int, float, str, list, dict]