rename models_vX to models.py and models_deprecated.py

This commit is contained in:
mattie ruth backman
2026-03-06 11:24:34 -05:00
committed by Mattie Ruth
parent da0975a4e0
commit 18494658c3
6 changed files with 7 additions and 7 deletions

View File

@@ -13,7 +13,7 @@ from typing import Any, Dict, Mapping, Optional
from loguru import logger
from pydantic import BaseModel, ValidationError
import pipecat.processors.frameworks.rtvi.models_v1 as RTVI
import pipecat.processors.frameworks.rtvi.models as RTVI
from pipecat import version as pipecat_version
from pipecat.frames.frames import (
CancelFrame,
@@ -32,7 +32,7 @@ from pipecat.frames.frames import (
)
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor
from pipecat.processors.frameworks.rtvi.frames import RTVIActionFrame, RTVIClientMessageFrame
from pipecat.processors.frameworks.rtvi.models_v0 import (
from pipecat.processors.frameworks.rtvi.models_deprecated import (
RTVIAction,
RTVIActionResponse,
RTVIActionResponseData,