mirror of
https://github.com/wassname/openrouter-python-sdk-retry-errors.git
synced 2026-07-30 12:20:57 +08:00
169 lines
4.6 KiB
Python
169 lines
4.6 KiB
Python
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
|
|
from __future__ import annotations
|
|
from .inputfile import InputFile, InputFileTypedDict
|
|
from .inputtext import InputText, InputTextTypedDict
|
|
from openrouter.types import (
|
|
BaseModel,
|
|
Nullable,
|
|
OptionalNullable,
|
|
UNSET,
|
|
UNSET_SENTINEL,
|
|
UnrecognizedStr,
|
|
)
|
|
from openrouter.utils import get_discriminator
|
|
from pydantic import Discriminator, Tag, model_serializer
|
|
from typing import List, Literal, Union
|
|
from typing_extensions import Annotated, NotRequired, TypeAliasType, TypedDict
|
|
|
|
|
|
FunctionCallOutputItemDetail = Union[
|
|
Literal[
|
|
"auto",
|
|
"high",
|
|
"low",
|
|
"original",
|
|
],
|
|
UnrecognizedStr,
|
|
]
|
|
|
|
|
|
FunctionCallOutputItemTypeInputImage = Literal["input_image",]
|
|
|
|
|
|
class FunctionCallOutputItemOutputInputImageTypedDict(TypedDict):
|
|
r"""Image input content item"""
|
|
|
|
detail: FunctionCallOutputItemDetail
|
|
type: FunctionCallOutputItemTypeInputImage
|
|
image_url: NotRequired[Nullable[str]]
|
|
|
|
|
|
class FunctionCallOutputItemOutputInputImage(BaseModel):
|
|
r"""Image input content item"""
|
|
|
|
detail: FunctionCallOutputItemDetail
|
|
|
|
type: FunctionCallOutputItemTypeInputImage
|
|
|
|
image_url: OptionalNullable[str] = UNSET
|
|
|
|
@model_serializer(mode="wrap")
|
|
def serialize_model(self, handler):
|
|
optional_fields = set(["image_url"])
|
|
nullable_fields = set(["image_url"])
|
|
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
|
|
|
|
|
|
FunctionCallOutputItemOutputUnion1TypedDict = TypeAliasType(
|
|
"FunctionCallOutputItemOutputUnion1TypedDict",
|
|
Union[
|
|
InputTextTypedDict,
|
|
FunctionCallOutputItemOutputInputImageTypedDict,
|
|
InputFileTypedDict,
|
|
],
|
|
)
|
|
|
|
|
|
FunctionCallOutputItemOutputUnion1 = Annotated[
|
|
Union[
|
|
Annotated[InputText, Tag("input_text")],
|
|
Annotated[FunctionCallOutputItemOutputInputImage, Tag("input_image")],
|
|
Annotated[InputFile, Tag("input_file")],
|
|
],
|
|
Discriminator(lambda m: get_discriminator(m, "type", "type")),
|
|
]
|
|
|
|
|
|
FunctionCallOutputItemOutputUnion2TypedDict = TypeAliasType(
|
|
"FunctionCallOutputItemOutputUnion2TypedDict",
|
|
Union[str, List[FunctionCallOutputItemOutputUnion1TypedDict]],
|
|
)
|
|
|
|
|
|
FunctionCallOutputItemOutputUnion2 = TypeAliasType(
|
|
"FunctionCallOutputItemOutputUnion2",
|
|
Union[str, List[FunctionCallOutputItemOutputUnion1]],
|
|
)
|
|
|
|
|
|
FunctionCallOutputItemStatus = Union[
|
|
Literal[
|
|
"in_progress",
|
|
"completed",
|
|
"incomplete",
|
|
],
|
|
UnrecognizedStr,
|
|
]
|
|
|
|
|
|
FunctionCallOutputItemTypeFunctionCallOutput = Literal["function_call_output",]
|
|
|
|
|
|
class FunctionCallOutputItemTypedDict(TypedDict):
|
|
r"""The output from a function call execution"""
|
|
|
|
call_id: str
|
|
output: FunctionCallOutputItemOutputUnion2TypedDict
|
|
type: FunctionCallOutputItemTypeFunctionCallOutput
|
|
id: NotRequired[Nullable[str]]
|
|
status: NotRequired[Nullable[FunctionCallOutputItemStatus]]
|
|
|
|
|
|
class FunctionCallOutputItem(BaseModel):
|
|
r"""The output from a function call execution"""
|
|
|
|
call_id: str
|
|
|
|
output: FunctionCallOutputItemOutputUnion2
|
|
|
|
type: FunctionCallOutputItemTypeFunctionCallOutput
|
|
|
|
id: OptionalNullable[str] = UNSET
|
|
|
|
status: OptionalNullable[FunctionCallOutputItemStatus] = UNSET
|
|
|
|
@model_serializer(mode="wrap")
|
|
def serialize_model(self, handler):
|
|
optional_fields = set(["id", "status"])
|
|
nullable_fields = set(["id", "status"])
|
|
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
|