Files
openrouter-python-sdk-retry…/src/openrouter/components/reasoningdetailservertoolcall.py
T
github-actions[bot]GitHubspeakeasybotspeakeasy-github[bot] <128539517+speakeasy-github[bot]@users.noreply.github.com>
9b7ee68d76 chore: 🐝 Update SDK - Generate (spec change merged) 0.11.13 (#414)
Co-authored-by: speakeasybot <bot@speakeasyapi.dev>
Co-authored-by: speakeasy-github[bot] <128539517+speakeasy-github[bot]@users.noreply.github.com>
2026-07-09 17:15:52 +00:00

85 lines
2.5 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
ReasoningDetailServerToolCallType = Literal["reasoning.server_tool_call",]
class ReasoningDetailServerToolCallTypedDict(TypedDict):
r"""Record of an OpenRouter server-tool invocation (e.g. openrouter:fusion), carried in reasoning_details so a prior tool call can be rehydrated into a later turn of the same conversation."""
arguments: str
result: str
tool_name: str
type: ReasoningDetailServerToolCallType
format_: NotRequired[Nullable[ReasoningFormat]]
id: NotRequired[Nullable[str]]
index: NotRequired[int]
tool_call_id: NotRequired[Nullable[str]]
class ReasoningDetailServerToolCall(BaseModel):
r"""Record of an OpenRouter server-tool invocation (e.g. openrouter:fusion), carried in reasoning_details so a prior tool call can be rehydrated into a later turn of the same conversation."""
arguments: str
result: str
tool_name: str
type: ReasoningDetailServerToolCallType
format_: Annotated[
OptionalNullable[ReasoningFormat], pydantic.Field(alias="format")
] = UNSET
id: OptionalNullable[str] = UNSET
index: Optional[int] = None
tool_call_id: OptionalNullable[str] = UNSET
@model_serializer(mode="wrap")
def serialize_model(self, handler):
optional_fields = set(["format", "id", "index", "tool_call_id"])
nullable_fields = set(["format", "id", "tool_call_id"])
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:
ReasoningDetailServerToolCall.model_rebuild()
except NameError:
pass