"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.""" from __future__ import annotations from .model import Model, ModelTypedDict from openrouter.types import BaseModel from typing_extensions import TypedDict class ModelResponseTypedDict(TypedDict): r"""Single model response""" data: ModelTypedDict r"""Information about an AI model available on OpenRouter""" class ModelResponse(BaseModel): r"""Single model response""" data: Model r"""Information about an AI model available on OpenRouter"""