chore: 🐝 Update SDK - Generate 0.10.1 (#366)

Co-authored-by: speakeasybot <bot@speakeasyapi.dev>
Co-authored-by: speakeasy-github[bot] <128539517+speakeasy-github[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2026-06-25 22:01:36 +00:00
committed by GitHub
co-authored by speakeasybot speakeasy-github[bot] <128539517+speakeasy-github[bot]@users.noreply.github.com>
parent 667941aaa8
commit 5e0b1a2b69
96 changed files with 8765 additions and 2021 deletions
@@ -0,0 +1,81 @@
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
from __future__ import annotations
from .capabilitydescriptor import CapabilityDescriptor, CapabilityDescriptorTypedDict
from .imagepricingentry import ImagePricingEntry, ImagePricingEntryTypedDict
from openrouter.types import BaseModel, Nullable, UNSET_SENTINEL
from pydantic import model_serializer
from typing import Dict, List
from typing_extensions import TypedDict
class ImageEndpointTypedDict(TypedDict):
r"""An endpoint that serves a given image model."""
allowed_passthrough_parameters: List[str]
r"""Provider-specific options accepted under provider.options[provider_slug]."""
pricing: List[ImagePricingEntryTypedDict]
r"""Billable pricing lines for this endpoint."""
provider_name: str
r"""Provider display name"""
provider_slug: str
r"""Provider slug"""
provider_tag: Nullable[str]
r"""Provider tag for request-side selection"""
supported_parameters: Dict[str, CapabilityDescriptorTypedDict]
supports_streaming: bool
r"""Whether this endpoint supports native SSE streaming (`stream: true` in the request)."""
class ImageEndpoint(BaseModel):
r"""An endpoint that serves a given image model."""
allowed_passthrough_parameters: List[str]
r"""Provider-specific options accepted under provider.options[provider_slug]."""
pricing: List[ImagePricingEntry]
r"""Billable pricing lines for this endpoint."""
provider_name: str
r"""Provider display name"""
provider_slug: str
r"""Provider slug"""
provider_tag: Nullable[str]
r"""Provider tag for request-side selection"""
supported_parameters: Dict[str, CapabilityDescriptor]
supports_streaming: bool
r"""Whether this endpoint supports native SSE streaming (`stream: true` in the request)."""
@model_serializer(mode="wrap")
def serialize_model(self, handler):
optional_fields = []
nullable_fields = ["provider_tag"]
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