mirror of
https://github.com/wassname/openrouter-python-sdk-retry-errors.git
synced 2026-07-31 12:30:30 +08:00
Speakeasy regeneration with latest schema changes including type renames and new server tool models.
366 lines
11 KiB
Python
366 lines
11 KiB
Python
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
|
|
from __future__ import annotations
|
|
from openrouter.types import (
|
|
BaseModel,
|
|
Nullable,
|
|
OptionalNullable,
|
|
UNSET,
|
|
UNSET_SENTINEL,
|
|
UnrecognizedStr,
|
|
)
|
|
from openrouter.utils import (
|
|
FieldMetadata,
|
|
HeaderMetadata,
|
|
RequestMetadata,
|
|
validate_open_enum,
|
|
)
|
|
import pydantic
|
|
from pydantic import model_serializer
|
|
from pydantic.functional_validators import PlainValidator
|
|
from typing import List, Literal, Optional, Union
|
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
|
|
|
class CreateGuardrailGlobalsTypedDict(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 CreateGuardrailGlobals(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.
|
|
|
|
"""
|
|
|
|
|
|
CreateGuardrailResetIntervalRequest = Union[
|
|
Literal[
|
|
"daily",
|
|
"weekly",
|
|
"monthly",
|
|
],
|
|
UnrecognizedStr,
|
|
]
|
|
r"""Interval at which the limit resets (daily, weekly, monthly)"""
|
|
|
|
|
|
class CreateGuardrailRequestBodyTypedDict(TypedDict):
|
|
name: str
|
|
r"""Name for the new guardrail"""
|
|
description: NotRequired[Nullable[str]]
|
|
r"""Description of the guardrail"""
|
|
limit_usd: NotRequired[Nullable[float]]
|
|
r"""Spending limit in USD"""
|
|
reset_interval: NotRequired[Nullable[CreateGuardrailResetIntervalRequest]]
|
|
r"""Interval at which the limit resets (daily, weekly, monthly)"""
|
|
allowed_providers: NotRequired[Nullable[List[str]]]
|
|
r"""List of allowed provider IDs"""
|
|
ignored_providers: NotRequired[Nullable[List[str]]]
|
|
r"""List of provider IDs to exclude from routing"""
|
|
allowed_models: NotRequired[Nullable[List[str]]]
|
|
r"""Array of model identifiers (slug or canonical_slug accepted)"""
|
|
enforce_zdr: NotRequired[Nullable[bool]]
|
|
r"""Whether to enforce zero data retention"""
|
|
|
|
|
|
class CreateGuardrailRequestBody(BaseModel):
|
|
name: str
|
|
r"""Name for the new guardrail"""
|
|
|
|
description: OptionalNullable[str] = UNSET
|
|
r"""Description of the guardrail"""
|
|
|
|
limit_usd: OptionalNullable[float] = UNSET
|
|
r"""Spending limit in USD"""
|
|
|
|
reset_interval: Annotated[
|
|
OptionalNullable[CreateGuardrailResetIntervalRequest],
|
|
PlainValidator(validate_open_enum(False)),
|
|
] = UNSET
|
|
r"""Interval at which the limit resets (daily, weekly, monthly)"""
|
|
|
|
allowed_providers: OptionalNullable[List[str]] = UNSET
|
|
r"""List of allowed provider IDs"""
|
|
|
|
ignored_providers: OptionalNullable[List[str]] = UNSET
|
|
r"""List of provider IDs to exclude from routing"""
|
|
|
|
allowed_models: OptionalNullable[List[str]] = UNSET
|
|
r"""Array of model identifiers (slug or canonical_slug accepted)"""
|
|
|
|
enforce_zdr: OptionalNullable[bool] = UNSET
|
|
r"""Whether to enforce zero data retention"""
|
|
|
|
@model_serializer(mode="wrap")
|
|
def serialize_model(self, handler):
|
|
optional_fields = [
|
|
"description",
|
|
"limit_usd",
|
|
"reset_interval",
|
|
"allowed_providers",
|
|
"ignored_providers",
|
|
"allowed_models",
|
|
"enforce_zdr",
|
|
]
|
|
nullable_fields = [
|
|
"description",
|
|
"limit_usd",
|
|
"reset_interval",
|
|
"allowed_providers",
|
|
"ignored_providers",
|
|
"allowed_models",
|
|
"enforce_zdr",
|
|
]
|
|
null_default_fields = []
|
|
|
|
serialized = handler(self)
|
|
|
|
m = {}
|
|
|
|
for n, f in type(self).model_fields.items():
|
|
k = f.alias or n
|
|
val = serialized.get(k)
|
|
serialized.pop(k, None)
|
|
|
|
optional_nullable = k in optional_fields and k in nullable_fields
|
|
is_set = (
|
|
self.__pydantic_fields_set__.intersection({n})
|
|
or k in null_default_fields
|
|
) # pylint: disable=no-member
|
|
|
|
if val is not None and val != UNSET_SENTINEL:
|
|
m[k] = val
|
|
elif val != UNSET_SENTINEL and (
|
|
not k in optional_fields or (optional_nullable and is_set)
|
|
):
|
|
m[k] = val
|
|
|
|
return m
|
|
|
|
|
|
class CreateGuardrailRequestTypedDict(TypedDict):
|
|
request_body: CreateGuardrailRequestBodyTypedDict
|
|
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 CreateGuardrailRequest(BaseModel):
|
|
request_body: Annotated[
|
|
CreateGuardrailRequestBody,
|
|
FieldMetadata(request=RequestMetadata(media_type="application/json")),
|
|
]
|
|
|
|
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.
|
|
|
|
"""
|
|
|
|
|
|
CreateGuardrailResetIntervalResponse = Union[
|
|
Literal[
|
|
"daily",
|
|
"weekly",
|
|
"monthly",
|
|
],
|
|
UnrecognizedStr,
|
|
]
|
|
r"""Interval at which the limit resets (daily, weekly, monthly)"""
|
|
|
|
|
|
class CreateGuardrailDataTypedDict(TypedDict):
|
|
r"""The created guardrail"""
|
|
|
|
id: str
|
|
r"""Unique identifier for the guardrail"""
|
|
name: str
|
|
r"""Name of the guardrail"""
|
|
created_at: str
|
|
r"""ISO 8601 timestamp of when the guardrail was created"""
|
|
description: NotRequired[Nullable[str]]
|
|
r"""Description of the guardrail"""
|
|
limit_usd: NotRequired[Nullable[float]]
|
|
r"""Spending limit in USD"""
|
|
reset_interval: NotRequired[Nullable[CreateGuardrailResetIntervalResponse]]
|
|
r"""Interval at which the limit resets (daily, weekly, monthly)"""
|
|
allowed_providers: NotRequired[Nullable[List[str]]]
|
|
r"""List of allowed provider IDs"""
|
|
ignored_providers: NotRequired[Nullable[List[str]]]
|
|
r"""List of provider IDs to exclude from routing"""
|
|
allowed_models: NotRequired[Nullable[List[str]]]
|
|
r"""Array of model canonical_slugs (immutable identifiers)"""
|
|
enforce_zdr: NotRequired[Nullable[bool]]
|
|
r"""Whether to enforce zero data retention"""
|
|
updated_at: NotRequired[Nullable[str]]
|
|
r"""ISO 8601 timestamp of when the guardrail was last updated"""
|
|
|
|
|
|
class CreateGuardrailData(BaseModel):
|
|
r"""The created guardrail"""
|
|
|
|
id: str
|
|
r"""Unique identifier for the guardrail"""
|
|
|
|
name: str
|
|
r"""Name of the guardrail"""
|
|
|
|
created_at: str
|
|
r"""ISO 8601 timestamp of when the guardrail was created"""
|
|
|
|
description: OptionalNullable[str] = UNSET
|
|
r"""Description of the guardrail"""
|
|
|
|
limit_usd: OptionalNullable[float] = UNSET
|
|
r"""Spending limit in USD"""
|
|
|
|
reset_interval: Annotated[
|
|
OptionalNullable[CreateGuardrailResetIntervalResponse],
|
|
PlainValidator(validate_open_enum(False)),
|
|
] = UNSET
|
|
r"""Interval at which the limit resets (daily, weekly, monthly)"""
|
|
|
|
allowed_providers: OptionalNullable[List[str]] = UNSET
|
|
r"""List of allowed provider IDs"""
|
|
|
|
ignored_providers: OptionalNullable[List[str]] = UNSET
|
|
r"""List of provider IDs to exclude from routing"""
|
|
|
|
allowed_models: OptionalNullable[List[str]] = UNSET
|
|
r"""Array of model canonical_slugs (immutable identifiers)"""
|
|
|
|
enforce_zdr: OptionalNullable[bool] = UNSET
|
|
r"""Whether to enforce zero data retention"""
|
|
|
|
updated_at: OptionalNullable[str] = UNSET
|
|
r"""ISO 8601 timestamp of when the guardrail was last updated"""
|
|
|
|
@model_serializer(mode="wrap")
|
|
def serialize_model(self, handler):
|
|
optional_fields = [
|
|
"description",
|
|
"limit_usd",
|
|
"reset_interval",
|
|
"allowed_providers",
|
|
"ignored_providers",
|
|
"allowed_models",
|
|
"enforce_zdr",
|
|
"updated_at",
|
|
]
|
|
nullable_fields = [
|
|
"description",
|
|
"limit_usd",
|
|
"reset_interval",
|
|
"allowed_providers",
|
|
"ignored_providers",
|
|
"allowed_models",
|
|
"enforce_zdr",
|
|
"updated_at",
|
|
]
|
|
null_default_fields = []
|
|
|
|
serialized = handler(self)
|
|
|
|
m = {}
|
|
|
|
for n, f in type(self).model_fields.items():
|
|
k = f.alias or n
|
|
val = serialized.get(k)
|
|
serialized.pop(k, None)
|
|
|
|
optional_nullable = k in optional_fields and k in nullable_fields
|
|
is_set = (
|
|
self.__pydantic_fields_set__.intersection({n})
|
|
or k in null_default_fields
|
|
) # pylint: disable=no-member
|
|
|
|
if val is not None and val != UNSET_SENTINEL:
|
|
m[k] = val
|
|
elif val != UNSET_SENTINEL and (
|
|
not k in optional_fields or (optional_nullable and is_set)
|
|
):
|
|
m[k] = val
|
|
|
|
return m
|
|
|
|
|
|
class CreateGuardrailResponseTypedDict(TypedDict):
|
|
r"""Guardrail created successfully"""
|
|
|
|
data: CreateGuardrailDataTypedDict
|
|
r"""The created guardrail"""
|
|
|
|
|
|
class CreateGuardrailResponse(BaseModel):
|
|
r"""Guardrail created successfully"""
|
|
|
|
data: CreateGuardrailData
|
|
r"""The created guardrail"""
|