"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.""" from __future__ import annotations from .multimodalmedia import MultimodalMedia, MultimodalMediaTypedDict from openrouter.types import BaseModel from typing import Literal from typing_extensions import TypedDict ContentPartInputVideoType = Literal["input_video",] class ContentPartInputVideoTypedDict(TypedDict): input_video: MultimodalMediaTypedDict type: ContentPartInputVideoType class ContentPartInputVideo(BaseModel): input_video: MultimodalMedia type: ContentPartInputVideoType