Remove duplicate ResponseCreated type

This commit is contained in:
Mark Backman
2026-04-22 11:58:15 -04:00
parent 0c3c5e5c7d
commit 8ec56092c0
2 changed files with 0 additions and 13 deletions

View File

@@ -109,7 +109,6 @@
"src/pipecat/services/ultravox/llm.py",
"src/pipecat/services/websocket_service.py",
"src/pipecat/services/whisper/stt.py",
"src/pipecat/services/xai/realtime/events.py",
"src/pipecat/services/xai/realtime/llm.py",
"src/pipecat/services/xtts/tts.py",
"src/pipecat/transports/base_output.py",

View File

@@ -541,18 +541,6 @@ class InputAudioBufferCleared(ServerEvent):
type: Literal["input_audio_buffer.cleared"]
class ResponseCreated(ServerEvent):
"""Event indicating an assistant response has been created.
Parameters:
type: Event type, always "response.created".
response: The created response object.
"""
type: Literal["response.created"]
response: "Response"
class ResponseOutputItemAdded(ServerEvent):
"""Event indicating an output item has been added to a response.