diff --git a/src/openai/types/beta/realtime/conversation_item_content.py b/src/openai/types/beta/realtime/conversation_item_content.py index fe9cef80e3..a236e94a8c 100644 --- a/src/openai/types/beta/realtime/conversation_item_content.py +++ b/src/openai/types/beta/realtime/conversation_item_content.py @@ -25,8 +25,8 @@ class ConversationItemContent(BaseModel): transcript: Optional[str] = None """The transcript of the audio, used for `input_audio` and `audio` content types.""" - type: Optional[Literal["input_text", "input_audio", "item_reference", "text", "audio"]] = None + type: Optional[Literal["input_text", "input_audio", "input_image", "item_reference", "text", "audio"]] = None """ - The content type (`input_text`, `input_audio`, `item_reference`, `text`, + The content type (`input_text`, `input_audio`, `input_image`, `item_reference`, `text`, `audio`). """ diff --git a/src/openai/types/beta/realtime/conversation_item_content_param.py b/src/openai/types/beta/realtime/conversation_item_content_param.py index 6042e7f90f..78b09fc9d5 100644 --- a/src/openai/types/beta/realtime/conversation_item_content_param.py +++ b/src/openai/types/beta/realtime/conversation_item_content_param.py @@ -24,8 +24,8 @@ class ConversationItemContentParam(TypedDict, total=False): transcript: str """The transcript of the audio, used for `input_audio` and `audio` content types.""" - type: Literal["input_text", "input_audio", "item_reference", "text", "audio"] + type: Literal["input_text", "input_audio", "input_image", "item_reference", "text", "audio"] """ - The content type (`input_text`, `input_audio`, `item_reference`, `text`, + The content type (`input_text`, `input_audio`, `input_image`, `item_reference`, `text`, `audio`). """