mirror of
https://github.com/wassname/openrouter-python-sdk-retry-errors.git
synced 2026-08-01 12:40:23 +08:00
Co-authored-by: speakeasybot <bot@speakeasyapi.dev> Co-authored-by: speakeasy-github[bot] <128539517+speakeasy-github[bot]@users.noreply.github.com>
19 lines
472 B
Python
19 lines
472 B
Python
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
|
|
from __future__ import annotations
|
|
from openrouter.types import BaseModel
|
|
import pydantic
|
|
from typing import Optional
|
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
|
|
|
class MultimodalMediaTypedDict(TypedDict):
|
|
data: str
|
|
format_: NotRequired[str]
|
|
|
|
|
|
class MultimodalMedia(BaseModel):
|
|
data: str
|
|
|
|
format_: Annotated[Optional[str], pydantic.Field(alias="format")] = None
|