rtvi: update protocol version to 0.3.0

This commit is contained in:
Aleix Conchillo Flaqué
2024-12-10 10:57:42 -08:00
parent 8c9c81d84b
commit acb3e21432

View File

@@ -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]