"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.""" from __future__ import annotations from openrouter.types import BaseModel from typing_extensions import TypedDict class BenchmarkPricingTypedDict(TypedDict): r"""OpenRouter pricing per token for this model. Null if pricing is unavailable.""" completion: str r"""Cost per output token (USD, decimal string).""" prompt: str r"""Cost per input token (USD, decimal string).""" class BenchmarkPricing(BaseModel): r"""OpenRouter pricing per token for this model. Null if pricing is unavailable.""" completion: str r"""Cost per output token (USD, decimal string).""" prompt: str r"""Cost per input token (USD, decimal string)."""