File size: 27,337 Bytes
87337b1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 |
import json
from dataclasses import dataclass, asdict, field, is_dataclass
from typing import Any, Dict, Literal, Optional, List, Set, Union
from enum import Enum
import uuid
def generate_event_id() -> str:
return str(uuid.uuid4())
# Enums
class Voices(str, Enum):
Alloy = "alloy"
Echo = "echo"
Fable = "fable"
Nova = "nova"
Nova_2 = "nova_2"
Nova_3 = "nova_3"
Nova_4 = "nova_4"
Nova_5 = "nova_5"
Onyx = "onyx"
Shimmer = "shimmer"
class AudioFormats(str, Enum):
PCM16 = "pcm16"
G711_ULAW = "g711_ulaw"
G711_ALAW = "g711_alaw"
class ItemType(str, Enum):
Message = "message"
FunctionCall = "function_call"
FunctionCallOutput = "function_call_output"
class MessageRole(str, Enum):
System = "system"
User = "user"
Assistant = "assistant"
class ContentType(str, Enum):
InputText = "input_text"
InputAudio = "input_audio"
Text = "text"
Audio = "audio"
@dataclass
class FunctionToolChoice:
name: str # Name of the function
type: str = "function" # Fixed value for type
# ToolChoice can be either a literal string or FunctionToolChoice
ToolChoice = Union[str, FunctionToolChoice] # "none", "auto", "required", or FunctionToolChoice
@dataclass
class RealtimeError:
type: str # The type of the error
message: str # The error message
code: Optional[str] = None # Optional error code
param: Optional[str] = None # Optional parameter related to the error
event_id: Optional[str] = None # Optional event ID for tracing
@dataclass
class InputAudioTranscription:
model: str = "whisper-1" # Default transcription model is "whisper-1"
@dataclass
class ServerVADUpdateParams:
threshold: Optional[float] = None # Threshold for voice activity detection
prefix_padding_ms: Optional[int] = None # Amount of padding before the voice starts (in milliseconds)
silence_duration_ms: Optional[int] = None # Duration of silence before considering speech stopped (in milliseconds)
type: str = "server_vad" # Fixed value for VAD type
@dataclass
class Session:
id: str # The unique identifier for the session
model: str # The model associated with the session (e.g., "gpt-3")
expires_at: int # Expiration time of the session in seconds since the epoch (UNIX timestamp)
object: str = "realtime.session" # Fixed value indicating the object type
modalities: Set[str] = field(default_factory=lambda: {"text", "audio"}) # Set of allowed modalities (e.g., "text", "audio")
instructions: Optional[str] = None # Instructions or guidance for the session
voice: Voices = Voices.Alloy # Voice configuration for audio responses, defaulting to "Alloy"
turn_detection: Optional[ServerVADUpdateParams] = None # Voice activity detection (VAD) settings
input_audio_format: AudioFormats = AudioFormats.PCM16 # Audio format for input (e.g., "pcm16")
output_audio_format: AudioFormats = AudioFormats.PCM16 # Audio format for output (e.g., "pcm16")
input_audio_transcription: Optional[InputAudioTranscription] = None # Audio transcription model settings (e.g., "whisper-1")
tools: List[Dict[str, Union[str, Any]]] = field(default_factory=list) # List of tools available during the session
tool_choice: Literal["auto", "none", "required"] = "auto" # How tools should be used in the session
temperature: float = 0.8 # Temperature setting for model creativity
max_response_output_tokens: Union[int, Literal["inf"]] = "inf" # Maximum number of tokens in the response, or "inf" for unlimited
@dataclass
class SessionUpdateParams:
model: Optional[str] = None # Optional string to specify the model
modalities: Optional[Set[str]] = None # Set of allowed modalities (e.g., "text", "audio")
instructions: Optional[str] = None # Optional instructions string
voice: Optional[Voices] = None # Voice selection, can be `None` or from `Voices` Enum
turn_detection: Optional[ServerVADUpdateParams] = None # Server VAD update params
input_audio_format: Optional[AudioFormats] = None # Input audio format from `AudioFormats` Enum
output_audio_format: Optional[AudioFormats] = None # Output audio format from `AudioFormats` Enum
input_audio_transcription: Optional[InputAudioTranscription] = None # Optional transcription model
tools: Optional[List[Dict[str, Union[str, any]]]] = None # List of tools (e.g., dictionaries)
tool_choice: Optional[ToolChoice] = None # ToolChoice, either string or `FunctionToolChoice`
temperature: Optional[float] = None # Optional temperature for response generation
max_response_output_tokens: Optional[Union[int, str]] = None # Max response tokens, "inf" for infinite
# Define individual message item param types
@dataclass
class SystemMessageItemParam:
content: List[dict] # This can be more specific based on content structure
id: Optional[str] = None
status: Optional[str] = None
type: str = "message"
role: str = "system"
@dataclass
class UserMessageItemParam:
content: List[dict] # Similarly, content can be more specific
id: Optional[str] = None
status: Optional[str] = None
type: str = "message"
role: str = "user"
@dataclass
class AssistantMessageItemParam:
content: List[dict] # Content structure here depends on your schema
id: Optional[str] = None
status: Optional[str] = None
type: str = "message"
role: str = "assistant"
@dataclass
class FunctionCallItemParam:
name: str
call_id: str
arguments: str
type: str = "function_call"
id: Optional[str] = None
status: Optional[str] = None
@dataclass
class FunctionCallOutputItemParam:
call_id: str
output: str
id: Optional[str] = None
type: str = "function_call_output"
# Union of all possible item types
ItemParam = Union[
SystemMessageItemParam,
UserMessageItemParam,
AssistantMessageItemParam,
FunctionCallItemParam,
FunctionCallOutputItemParam
]
# Assuming the EventType and other enums are already defined
# For reference:
class EventType(str, Enum):
SESSION_UPDATE = "session.update"
INPUT_AUDIO_BUFFER_APPEND = "input_audio_buffer.append"
INPUT_AUDIO_BUFFER_COMMIT = "input_audio_buffer.commit"
INPUT_AUDIO_BUFFER_CLEAR = "input_audio_buffer.clear"
UPDATE_CONVERSATION_CONFIG = "update_conversation_config"
ITEM_CREATE = "conversation.item.create"
ITEM_TRUNCATE = "conversation.item.truncate"
ITEM_DELETE = "conversation.item.delete"
RESPONSE_CREATE = "response.create"
RESPONSE_CANCEL = "response.cancel"
ERROR = "error"
SESSION_CREATED = "session.created"
SESSION_UPDATED = "session.updated"
INPUT_AUDIO_BUFFER_COMMITTED = "input_audio_buffer.committed"
INPUT_AUDIO_BUFFER_CLEARED = "input_audio_buffer.cleared"
INPUT_AUDIO_BUFFER_SPEECH_STARTED = "input_audio_buffer.speech_started"
INPUT_AUDIO_BUFFER_SPEECH_STOPPED = "input_audio_buffer.speech_stopped"
ITEM_CREATED = "conversation.item.created"
ITEM_DELETED = "conversation.item.deleted"
ITEM_TRUNCATED = "conversation.item.truncated"
ITEM_INPUT_AUDIO_TRANSCRIPTION_COMPLETED = "conversation.item.input_audio_transcription.completed"
ITEM_INPUT_AUDIO_TRANSCRIPTION_FAILED = "conversation.item.input_audio_transcription.failed"
RESPONSE_CREATED = "response.created"
RESPONSE_CANCELLED = "response.cancelled"
RESPONSE_DONE = "response.done"
RESPONSE_OUTPUT_ITEM_ADDED = "response.output_item.added"
RESPONSE_OUTPUT_ITEM_DONE = "response.output_item.done"
RESPONSE_CONTENT_PART_ADDED = "response.content_part.added"
RESPONSE_CONTENT_PART_DONE = "response.content_part.done"
RESPONSE_TEXT_DELTA = "response.text.delta"
RESPONSE_TEXT_DONE = "response.text.done"
RESPONSE_AUDIO_TRANSCRIPT_DELTA = "response.audio_transcript.delta"
RESPONSE_AUDIO_TRANSCRIPT_DONE = "response.audio_transcript.done"
RESPONSE_AUDIO_DELTA = "response.audio.delta"
RESPONSE_AUDIO_DONE = "response.audio.done"
RESPONSE_FUNCTION_CALL_ARGUMENTS_DELTA = "response.function_call_arguments.delta"
RESPONSE_FUNCTION_CALL_ARGUMENTS_DONE = "response.function_call_arguments.done"
RATE_LIMITS_UPDATED = "rate_limits.updated"
# Base class for all ServerToClientMessages
@dataclass
class ServerToClientMessage:
event_id: str
@dataclass
class ErrorMessage(ServerToClientMessage):
error: RealtimeError
type: str = EventType.ERROR
@dataclass
class SessionCreated(ServerToClientMessage):
session: Session
type: str = EventType.SESSION_CREATED
@dataclass
class SessionUpdated(ServerToClientMessage):
session: Session
type: str = EventType.SESSION_UPDATED
@dataclass
class InputAudioBufferCommitted(ServerToClientMessage):
item_id: str
type: str = EventType.INPUT_AUDIO_BUFFER_COMMITTED
previous_item_id: Optional[str] = None
@dataclass
class InputAudioBufferCleared(ServerToClientMessage):
type: str = EventType.INPUT_AUDIO_BUFFER_CLEARED
@dataclass
class InputAudioBufferSpeechStarted(ServerToClientMessage):
audio_start_ms: int
item_id: str
type: str = EventType.INPUT_AUDIO_BUFFER_SPEECH_STARTED
@dataclass
class InputAudioBufferSpeechStopped(ServerToClientMessage):
audio_end_ms: int
type: str = EventType.INPUT_AUDIO_BUFFER_SPEECH_STOPPED
item_id: Optional[str] = None
@dataclass
class ItemCreated(ServerToClientMessage):
item: ItemParam
type: str = EventType.ITEM_CREATED
previous_item_id: Optional[str] = None
@dataclass
class ItemTruncated(ServerToClientMessage):
item_id: str
content_index: int
audio_end_ms: int
type: str = EventType.ITEM_TRUNCATED
@dataclass
class ItemDeleted(ServerToClientMessage):
item_id: str
type: str = EventType.ITEM_DELETED
# Assuming the necessary enums, ItemParam, and other classes are defined above
# ResponseStatus could be a string or an enum, depending on your schema
# Enum or Literal for ResponseStatus (could be more extensive)
ResponseStatus = Union[str, Literal["in_progress", "completed", "cancelled", "incomplete", "failed"]]
# Define status detail classes
@dataclass
class ResponseCancelledDetails:
reason: str # e.g., "turn_detected", "client_cancelled"
type: str = "cancelled"
@dataclass
class ResponseIncompleteDetails:
reason: str # e.g., "max_output_tokens", "content_filter"
type: str = "incomplete"
@dataclass
class ResponseError:
type: str # The type of the error, e.g., "validation_error", "server_error"
message: str # The error message describing what went wrong
code: Optional[str] = None # Optional error code, e.g., HTTP status code, API error code
@dataclass
class ResponseFailedDetails:
error: ResponseError # Assuming ResponseError is already defined
type: str = "failed"
# Union of possible status details
ResponseStatusDetails = Union[ResponseCancelledDetails, ResponseIncompleteDetails, ResponseFailedDetails]
# Define Usage class to handle token usage
@dataclass
class InputTokenDetails:
cached_tokens: int
text_tokens: int
audio_tokens: int
@dataclass
class OutputTokenDetails:
text_tokens: int
audio_tokens: int
@dataclass
class Usage:
total_tokens: int
input_tokens: int
output_tokens: int
input_token_details: InputTokenDetails
output_token_details: OutputTokenDetails
# The Response dataclass definition
@dataclass
class Response:
id: str # Unique ID for the response
output: List[ItemParam] = field(default_factory=list) # List of items in the response
object: str = "realtime.response" # Fixed value for object type
status: ResponseStatus = "in_progress" # Status of the response
status_details: Optional[ResponseStatusDetails] = None # Additional details based on status
usage: Optional[Usage] = None # Token usage information
metadata: Optional[Dict[str, Any]] = None # Additional metadata for the response
@dataclass
class ResponseCreated(ServerToClientMessage):
response: Response
type: str = EventType.RESPONSE_CREATED
@dataclass
class ResponseDone(ServerToClientMessage):
response: Response
type: str = EventType.RESPONSE_DONE
@dataclass
class ResponseTextDelta(ServerToClientMessage):
response_id: str
item_id: str
output_index: int
content_index: int
delta: str
type: str = EventType.RESPONSE_TEXT_DELTA
@dataclass
class ResponseTextDone(ServerToClientMessage):
response_id: str
item_id: str
output_index: int
content_index: int
text: str
type: str = EventType.RESPONSE_TEXT_DONE
@dataclass
class ResponseAudioTranscriptDelta(ServerToClientMessage):
response_id: str
item_id: str
output_index: int
content_index: int
delta: str
type: str = EventType.RESPONSE_AUDIO_TRANSCRIPT_DELTA
@dataclass
class ResponseAudioTranscriptDone(ServerToClientMessage):
response_id: str
item_id: str
output_index: int
content_index: int
transcript: str
type: str = EventType.RESPONSE_AUDIO_TRANSCRIPT_DONE
@dataclass
class ResponseAudioDelta(ServerToClientMessage):
response_id: str
item_id: str
output_index: int
content_index: int
delta: str
type: str = EventType.RESPONSE_AUDIO_DELTA
@dataclass
class ResponseAudioDone(ServerToClientMessage):
response_id: str
item_id: str
output_index: int
content_index: int
type: str = EventType.RESPONSE_AUDIO_DONE
@dataclass
class ResponseFunctionCallArgumentsDelta(ServerToClientMessage):
response_id: str
item_id: str
output_index: int
call_id: str
delta: str
type: str = EventType.RESPONSE_FUNCTION_CALL_ARGUMENTS_DELTA
@dataclass
class ResponseFunctionCallArgumentsDone(ServerToClientMessage):
response_id: str
item_id: str
output_index: int
call_id: str
name: str
arguments: str
type: str = EventType.RESPONSE_FUNCTION_CALL_ARGUMENTS_DONE
@dataclass
class RateLimitDetails:
name: str # Name of the rate limit, e.g., "api_requests", "message_generation"
limit: int # The maximum number of allowed requests in the current time window
remaining: int # The number of requests remaining in the current time window
reset_seconds: float # The number of seconds until the rate limit resets
@dataclass
class RateLimitsUpdated(ServerToClientMessage):
rate_limits: List[RateLimitDetails]
type: str = EventType.RATE_LIMITS_UPDATED
@dataclass
class ResponseOutputItemAdded(ServerToClientMessage):
response_id: str # The ID of the response
output_index: int # Index of the output item in the response
item: Union[ItemParam, None] # The added item (can be a message, function call, etc.)
type: str = EventType.RESPONSE_OUTPUT_ITEM_ADDED # Fixed event type
@dataclass
class ResponseContentPartAdded(ServerToClientMessage):
response_id: str # The ID of the response
item_id: str # The ID of the item to which the content part was added
output_index: int # Index of the output item in the response
content_index: int # Index of the content part in the output
part: Union[ItemParam, None] # The added content part
content: Union[ItemParam, None] = None # The added content part for azure
type: str = EventType.RESPONSE_CONTENT_PART_ADDED # Fixed event type
@dataclass
class ResponseContentPartDone(ServerToClientMessage):
response_id: str # The ID of the response
item_id: str # The ID of the item to which the content part belongs
output_index: int # Index of the output item in the response
content_index: int # Index of the content part in the output
part: Union[ItemParam, None] # The content part that was completed
content: Union[ItemParam, None] = None # The added content part for azure
type: str = EventType.RESPONSE_CONTENT_PART_ADDED # Fixed event type
@dataclass
class ResponseOutputItemDone(ServerToClientMessage):
response_id: str # The ID of the response
output_index: int # Index of the output item in the response
item: Union[ItemParam, None] # The output item that was completed
type: str = EventType.RESPONSE_OUTPUT_ITEM_DONE # Fixed event type
@dataclass
class ItemInputAudioTranscriptionCompleted(ServerToClientMessage):
item_id: str # The ID of the item for which transcription was completed
content_index: int # Index of the content part that was transcribed
transcript: str # The transcribed text
type: str = EventType.ITEM_INPUT_AUDIO_TRANSCRIPTION_COMPLETED # Fixed event type
@dataclass
class ItemInputAudioTranscriptionFailed(ServerToClientMessage):
item_id: str # The ID of the item for which transcription failed
content_index: int # Index of the content part that failed to transcribe
error: ResponseError # Error details explaining the failure
type: str = EventType.ITEM_INPUT_AUDIO_TRANSCRIPTION_FAILED # Fixed event type
# Union of all server-to-client message types
ServerToClientMessages = Union[
ErrorMessage,
SessionCreated,
SessionUpdated,
InputAudioBufferCommitted,
InputAudioBufferCleared,
InputAudioBufferSpeechStarted,
InputAudioBufferSpeechStopped,
ItemCreated,
ItemTruncated,
ItemDeleted,
ResponseCreated,
ResponseDone,
ResponseTextDelta,
ResponseTextDone,
ResponseAudioTranscriptDelta,
ResponseAudioTranscriptDone,
ResponseAudioDelta,
ResponseAudioDone,
ResponseFunctionCallArgumentsDelta,
ResponseFunctionCallArgumentsDone,
RateLimitsUpdated,
ResponseOutputItemAdded,
ResponseContentPartAdded,
ResponseContentPartDone,
ResponseOutputItemDone,
ItemInputAudioTranscriptionCompleted,
ItemInputAudioTranscriptionFailed
]
# Base class for all ClientToServerMessages
@dataclass
class ClientToServerMessage:
event_id: str = field(default_factory=generate_event_id)
@dataclass
class InputAudioBufferAppend(ClientToServerMessage):
audio: Optional[str] = field(default=None)
type: str = EventType.INPUT_AUDIO_BUFFER_APPEND # Default argument (has a default value)
@dataclass
class InputAudioBufferCommit(ClientToServerMessage):
type: str = EventType.INPUT_AUDIO_BUFFER_COMMIT
@dataclass
class InputAudioBufferClear(ClientToServerMessage):
type: str = EventType.INPUT_AUDIO_BUFFER_CLEAR
@dataclass
class ItemCreate(ClientToServerMessage):
item: Optional[ItemParam] = field(default=None) # Assuming `ItemParam` is already defined
type: str = EventType.ITEM_CREATE
previous_item_id: Optional[str] = None
@dataclass
class ItemTruncate(ClientToServerMessage):
item_id: Optional[str] = field(default=None)
content_index: Optional[int] = field(default=None)
audio_end_ms: Optional[int] = field(default=None)
type: str = EventType.ITEM_TRUNCATE
@dataclass
class ItemDelete(ClientToServerMessage):
item_id: Optional[str] = field(default=None)
type: str = EventType.ITEM_DELETE
@dataclass
class ResponseCreateParams:
commit: bool = True # Whether the generated messages should be appended to the conversation
cancel_previous: bool = True # Whether to cancel the previous pending generation
append_input_items: Optional[List[ItemParam]] = None # Messages to append before response generation
input_items: Optional[List[ItemParam]] = None # Initial messages to use for generation
modalities: Optional[Set[str]] = None # Allowed modalities (e.g., "text", "audio")
instructions: Optional[str] = None # Instructions or guidance for the model
voice: Optional[Voices] = None # Voice setting for audio output
output_audio_format: Optional[AudioFormats] = None # Format for the audio output
tools: Optional[List[Dict[str, Any]]] = None # Tools available for this response
tool_choice: Optional[ToolChoice] = None # How to choose the tool ("auto", "required", etc.)
temperature: Optional[float] = None # The randomness of the model's responses
max_response_output_tokens: Optional[Union[int, str]] = None # Max number of tokens for the output, "inf" for infinite
@dataclass
class ResponseCreate(ClientToServerMessage):
type: str = EventType.RESPONSE_CREATE
response: Optional[ResponseCreateParams] = None # Assuming `ResponseCreateParams` is defined
@dataclass
class ResponseCancel(ClientToServerMessage):
type: str = EventType.RESPONSE_CANCEL
DEFAULT_CONVERSATION = "default"
@dataclass
class UpdateConversationConfig(ClientToServerMessage):
type: str = EventType.UPDATE_CONVERSATION_CONFIG
label: str = DEFAULT_CONVERSATION
subscribe_to_user_audio: Optional[bool] = None
voice: Optional[Voices] = None
system_message: Optional[str] = None
temperature: Optional[float] = None
max_tokens: Optional[int] = None
tools: Optional[List[dict]] = None
tool_choice: Optional[ToolChoice] = None
disable_audio: Optional[bool] = None
output_audio_format: Optional[AudioFormats] = None
@dataclass
class SessionUpdate(ClientToServerMessage):
session: Optional[SessionUpdateParams] = field(default=None) # Assuming `SessionUpdateParams` is defined
type: str = EventType.SESSION_UPDATE
# Union of all client-to-server message types
ClientToServerMessages = Union[
InputAudioBufferAppend,
InputAudioBufferCommit,
InputAudioBufferClear,
ItemCreate,
ItemTruncate,
ItemDelete,
ResponseCreate,
ResponseCancel,
UpdateConversationConfig,
SessionUpdate
]
def from_dict(data_class, data):
"""Recursively convert a dictionary to a dataclass instance."""
if is_dataclass(data_class): # Check if the target class is a dataclass
fieldtypes = {f.name: f.type for f in data_class.__dataclass_fields__.values()}
# Filter out keys that are not in the dataclass fields
valid_data = {f: data[f] for f in fieldtypes if f in data}
return data_class(**{f: from_dict(fieldtypes[f], valid_data[f]) for f in valid_data})
elif isinstance(data, list): # Handle lists of nested dataclass objects
return [from_dict(data_class.__args__[0], item) for item in data]
else: # For primitive types (str, int, float, etc.), return the value as-is
return data
def parse_client_message(unparsed_string: str) -> ClientToServerMessage:
data = json.loads(unparsed_string)
# Dynamically select the correct message class based on the `type` field, using from_dict
if data["type"] == EventType.INPUT_AUDIO_BUFFER_APPEND:
return from_dict(InputAudioBufferAppend, data)
elif data["type"] == EventType.INPUT_AUDIO_BUFFER_COMMIT:
return from_dict(InputAudioBufferCommit, data)
elif data["type"] == EventType.INPUT_AUDIO_BUFFER_CLEAR:
return from_dict(InputAudioBufferClear, data)
elif data["type"] == EventType.ITEM_CREATE:
return from_dict(ItemCreate, data)
elif data["type"] == EventType.ITEM_TRUNCATE:
return from_dict(ItemTruncate, data)
elif data["type"] == EventType.ITEM_DELETE:
return from_dict(ItemDelete, data)
elif data["type"] == EventType.RESPONSE_CREATE:
return from_dict(ResponseCreate, data)
elif data["type"] == EventType.RESPONSE_CANCEL:
return from_dict(ResponseCancel, data)
elif data["type"] == EventType.UPDATE_CONVERSATION_CONFIG:
return from_dict(UpdateConversationConfig, data)
elif data["type"] == EventType.SESSION_UPDATE:
return from_dict(SessionUpdate, data)
raise ValueError(f"Unknown message type: {data['type']}")
# Assuming all necessary classes and enums (EventType, ServerToClientMessages, etc.) are imported
# Here’s how you can dynamically parse a server-to-client message based on the `type` field:
def parse_server_message(unparsed_string: str) -> ServerToClientMessage:
data = json.loads(unparsed_string)
# Dynamically select the correct message class based on the `type` field, using from_dict
if data["type"] == EventType.ERROR:
return from_dict(ErrorMessage, data)
elif data["type"] == EventType.SESSION_CREATED:
return from_dict(SessionCreated, data)
elif data["type"] == EventType.SESSION_UPDATED:
return from_dict(SessionUpdated, data)
elif data["type"] == EventType.INPUT_AUDIO_BUFFER_COMMITTED:
return from_dict(InputAudioBufferCommitted, data)
elif data["type"] == EventType.INPUT_AUDIO_BUFFER_CLEARED:
return from_dict(InputAudioBufferCleared, data)
elif data["type"] == EventType.INPUT_AUDIO_BUFFER_SPEECH_STARTED:
return from_dict(InputAudioBufferSpeechStarted, data)
elif data["type"] == EventType.INPUT_AUDIO_BUFFER_SPEECH_STOPPED:
return from_dict(InputAudioBufferSpeechStopped, data)
elif data["type"] == EventType.ITEM_CREATED:
return from_dict(ItemCreated, data)
elif data["type"] == EventType.ITEM_TRUNCATED:
return from_dict(ItemTruncated, data)
elif data["type"] == EventType.ITEM_DELETED:
return from_dict(ItemDeleted, data)
elif data["type"] == EventType.RESPONSE_CREATED:
return from_dict(ResponseCreated, data)
elif data["type"] == EventType.RESPONSE_DONE:
return from_dict(ResponseDone, data)
elif data["type"] == EventType.RESPONSE_TEXT_DELTA:
return from_dict(ResponseTextDelta, data)
elif data["type"] == EventType.RESPONSE_TEXT_DONE:
return from_dict(ResponseTextDone, data)
elif data["type"] == EventType.RESPONSE_AUDIO_TRANSCRIPT_DELTA:
return from_dict(ResponseAudioTranscriptDelta, data)
elif data["type"] == EventType.RESPONSE_AUDIO_TRANSCRIPT_DONE:
return from_dict(ResponseAudioTranscriptDone, data)
elif data["type"] == EventType.RESPONSE_AUDIO_DELTA:
return from_dict(ResponseAudioDelta, data)
elif data["type"] == EventType.RESPONSE_AUDIO_DONE:
return from_dict(ResponseAudioDone, data)
elif data["type"] == EventType.RESPONSE_FUNCTION_CALL_ARGUMENTS_DELTA:
return from_dict(ResponseFunctionCallArgumentsDelta, data)
elif data["type"] == EventType.RESPONSE_FUNCTION_CALL_ARGUMENTS_DONE:
return from_dict(ResponseFunctionCallArgumentsDone, data)
elif data["type"] == EventType.RATE_LIMITS_UPDATED:
return from_dict(RateLimitsUpdated, data)
elif data["type"] == EventType.RESPONSE_OUTPUT_ITEM_ADDED:
return from_dict(ResponseOutputItemAdded, data)
elif data["type"] == EventType.RESPONSE_CONTENT_PART_ADDED:
return from_dict(ResponseContentPartAdded, data)
elif data["type"] == EventType.RESPONSE_CONTENT_PART_DONE:
return from_dict(ResponseContentPartDone, data)
elif data["type"] == EventType.RESPONSE_OUTPUT_ITEM_DONE:
return from_dict(ResponseOutputItemDone, data)
elif data["type"] == EventType.ITEM_INPUT_AUDIO_TRANSCRIPTION_COMPLETED:
return from_dict(ItemInputAudioTranscriptionCompleted, data)
elif data["type"] == EventType.ITEM_INPUT_AUDIO_TRANSCRIPTION_FAILED:
return from_dict(ItemInputAudioTranscriptionFailed, data)
raise ValueError(f"Unknown message type: {data['type']}")
def to_json(obj: Union[ClientToServerMessage, ServerToClientMessage]) -> str:
# ignore none value
return json.dumps(asdict(obj, dict_factory=lambda x: {k: v for (k, v) in x if v is not None})) |