mirror of
https://github.com/wassname/openrouter-python-sdk-retry-errors.git
synced 2026-08-01 12:40:23 +08:00
* `open_router.benchmarks.get_benchmarks()`: **Added** * `open_router.datasets.get_benchmarks_artificial_analysis()`: **Deleted** **Breaking** ⚠️ * `open_router.datasets.get_benchmarks_design_arena()`: **Deleted** **Breaking** ⚠️ * `open_router.chat.send()`: `response` **Changed** * `open_router.embeddings.list_models()`: `response.data.[].reasoning` **Added** * `open_router.models.get()`: `response.data.reasoning` **Added** * `open_router.models.list()`: `response.data.[].reasoning` **Added** * `open_router.models.list_for_user()`: `response.data.[].reasoning` **Added**
179 lines
6.3 KiB
Python
179 lines
6.3 KiB
Python
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
||
|
||
from __future__ import annotations
|
||
from openrouter.types import BaseModel, UnrecognizedStr
|
||
from openrouter.utils import (
|
||
FieldMetadata,
|
||
HeaderMetadata,
|
||
QueryParamMetadata,
|
||
validate_open_enum,
|
||
)
|
||
import pydantic
|
||
from pydantic.functional_validators import PlainValidator
|
||
from typing import Literal, Optional, Union
|
||
from typing_extensions import Annotated, NotRequired, TypedDict
|
||
|
||
|
||
class GetBenchmarksGlobalsTypedDict(TypedDict):
|
||
http_referer: NotRequired[str]
|
||
r"""The app identifier should be your app's URL and is used as the primary identifier for rankings.
|
||
This is used to track API usage per application.
|
||
|
||
"""
|
||
x_open_router_title: NotRequired[str]
|
||
r"""The app display name allows you to customize how your app appears in OpenRouter's dashboard.
|
||
|
||
"""
|
||
x_open_router_categories: NotRequired[str]
|
||
r"""Comma-separated list of app categories (e.g. \"cli-agent,cloud-agent\"). Used for marketplace rankings.
|
||
|
||
"""
|
||
|
||
|
||
class GetBenchmarksGlobals(BaseModel):
|
||
http_referer: Annotated[
|
||
Optional[str],
|
||
pydantic.Field(alias="HTTP-Referer"),
|
||
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
||
] = None
|
||
r"""The app identifier should be your app's URL and is used as the primary identifier for rankings.
|
||
This is used to track API usage per application.
|
||
|
||
"""
|
||
|
||
x_open_router_title: Annotated[
|
||
Optional[str],
|
||
pydantic.Field(alias="X-OpenRouter-Title"),
|
||
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
||
] = None
|
||
r"""The app display name allows you to customize how your app appears in OpenRouter's dashboard.
|
||
|
||
"""
|
||
|
||
x_open_router_categories: Annotated[
|
||
Optional[str],
|
||
pydantic.Field(alias="X-OpenRouter-Categories"),
|
||
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
||
] = None
|
||
r"""Comma-separated list of app categories (e.g. \"cli-agent,cloud-agent\"). Used for marketplace rankings.
|
||
|
||
"""
|
||
|
||
|
||
Source = Union[
|
||
Literal[
|
||
"artificial-analysis",
|
||
"design-arena",
|
||
],
|
||
UnrecognizedStr,
|
||
]
|
||
r"""Benchmark source to query. Determines the shape of the returned items."""
|
||
|
||
|
||
TaskType = Union[
|
||
Literal[
|
||
"coding",
|
||
"intelligence",
|
||
"agentic",
|
||
],
|
||
UnrecognizedStr,
|
||
]
|
||
r"""Filter results by task type. For Artificial Analysis, maps to the corresponding index. For Design Arena, maps to the matching category."""
|
||
|
||
|
||
Arena = Union[
|
||
Literal[
|
||
"models",
|
||
"builders",
|
||
"agents",
|
||
],
|
||
UnrecognizedStr,
|
||
]
|
||
r"""Design Arena only: arena to query. Defaults to `models` when source is `design-arena`."""
|
||
|
||
|
||
class GetBenchmarksRequestTypedDict(TypedDict):
|
||
source: Source
|
||
r"""Benchmark source to query. Determines the shape of the returned items."""
|
||
http_referer: NotRequired[str]
|
||
r"""The app identifier should be your app's URL and is used as the primary identifier for rankings.
|
||
This is used to track API usage per application.
|
||
|
||
"""
|
||
x_open_router_title: NotRequired[str]
|
||
r"""The app display name allows you to customize how your app appears in OpenRouter's dashboard.
|
||
|
||
"""
|
||
x_open_router_categories: NotRequired[str]
|
||
r"""Comma-separated list of app categories (e.g. \"cli-agent,cloud-agent\"). Used for marketplace rankings.
|
||
|
||
"""
|
||
task_type: NotRequired[TaskType]
|
||
r"""Filter results by task type. For Artificial Analysis, maps to the corresponding index. For Design Arena, maps to the matching category."""
|
||
arena: NotRequired[Arena]
|
||
r"""Design Arena only: arena to query. Defaults to `models` when source is `design-arena`."""
|
||
category: NotRequired[str]
|
||
r"""Design Arena only: category within the arena (e.g. `codecategories`, `uicomponent`, `gamedev`, `3d`, `dataviz`, `image`, `video`, `svg`). When omitted, returns all categories."""
|
||
max_results: NotRequired[int]
|
||
r"""Max results to return (1–100, default 50)."""
|
||
|
||
|
||
class GetBenchmarksRequest(BaseModel):
|
||
source: Annotated[
|
||
Annotated[Source, PlainValidator(validate_open_enum(False))],
|
||
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
||
]
|
||
r"""Benchmark source to query. Determines the shape of the returned items."""
|
||
|
||
http_referer: Annotated[
|
||
Optional[str],
|
||
pydantic.Field(alias="HTTP-Referer"),
|
||
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
||
] = None
|
||
r"""The app identifier should be your app's URL and is used as the primary identifier for rankings.
|
||
This is used to track API usage per application.
|
||
|
||
"""
|
||
|
||
x_open_router_title: Annotated[
|
||
Optional[str],
|
||
pydantic.Field(alias="X-OpenRouter-Title"),
|
||
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
||
] = None
|
||
r"""The app display name allows you to customize how your app appears in OpenRouter's dashboard.
|
||
|
||
"""
|
||
|
||
x_open_router_categories: Annotated[
|
||
Optional[str],
|
||
pydantic.Field(alias="X-OpenRouter-Categories"),
|
||
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
||
] = None
|
||
r"""Comma-separated list of app categories (e.g. \"cli-agent,cloud-agent\"). Used for marketplace rankings.
|
||
|
||
"""
|
||
|
||
task_type: Annotated[
|
||
Annotated[Optional[TaskType], PlainValidator(validate_open_enum(False))],
|
||
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
||
] = None
|
||
r"""Filter results by task type. For Artificial Analysis, maps to the corresponding index. For Design Arena, maps to the matching category."""
|
||
|
||
arena: Annotated[
|
||
Annotated[Optional[Arena], PlainValidator(validate_open_enum(False))],
|
||
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
||
] = None
|
||
r"""Design Arena only: arena to query. Defaults to `models` when source is `design-arena`."""
|
||
|
||
category: Annotated[
|
||
Optional[str],
|
||
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
||
] = None
|
||
r"""Design Arena only: category within the arena (e.g. `codecategories`, `uicomponent`, `gamedev`, `3d`, `dataviz`, `image`, `video`, `svg`). When omitted, returns all categories."""
|
||
|
||
max_results: Annotated[
|
||
Optional[int],
|
||
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
||
] = 50
|
||
r"""Max results to return (1–100, default 50)."""
|