Files
openrouter-python-sdk-retry…/src/openrouter/components/reasoningdetailtext.py
T

79 lines
2.1 KiB
Python

"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
from __future__ import annotations
from .reasoningformat import ReasoningFormat
from openrouter.types import (
BaseModel,
Nullable,
OptionalNullable,
UNSET,
UNSET_SENTINEL,
)
import pydantic
from pydantic import model_serializer
from typing import Literal, Optional
from typing_extensions import Annotated, NotRequired, TypedDict
ReasoningDetailTextType = Literal["reasoning.text",]
class ReasoningDetailTextTypedDict(TypedDict):
r"""Reasoning detail text schema"""
type: ReasoningDetailTextType
format_: NotRequired[Nullable[ReasoningFormat]]
id: NotRequired[Nullable[str]]
index: NotRequired[int]
signature: NotRequired[Nullable[str]]
text: NotRequired[Nullable[str]]
class ReasoningDetailText(BaseModel):
r"""Reasoning detail text schema"""
type: ReasoningDetailTextType
format_: Annotated[
OptionalNullable[ReasoningFormat], pydantic.Field(alias="format")
] = UNSET
id: OptionalNullable[str] = UNSET
index: Optional[int] = None
signature: OptionalNullable[str] = UNSET
text: OptionalNullable[str] = UNSET
@model_serializer(mode="wrap")
def serialize_model(self, handler):
optional_fields = set(["format", "id", "index", "signature", "text"])
nullable_fields = set(["format", "id", "signature", "text"])
serialized = handler(self)
m = {}
for n, f in type(self).model_fields.items():
k = f.alias or n
val = serialized.get(k, serialized.get(n))
is_nullable_and_explicitly_set = (
k in nullable_fields
and (self.__pydantic_fields_set__.intersection({n})) # pylint: disable=no-member
)
if val != UNSET_SENTINEL:
if (
val is not None
or k not in optional_fields
or is_nullable_and_explicitly_set
):
m[k] = val
return m
try:
ReasoningDetailText.model_rebuild()
except NameError:
pass