mirror of
https://github.com/wassname/openrouter-python-sdk-retry-errors.git
synced 2026-07-30 12:20:57 +08:00
feat: regenerate SDK with updated OpenAPI spec
Speakeasy regeneration with latest schema changes including type renames and new server tool models.
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
||||
|
||||
from __future__ import annotations
|
||||
from .outputfilesearchcallitem import (
|
||||
OutputFileSearchCallItem,
|
||||
OutputFileSearchCallItemTypedDict,
|
||||
)
|
||||
from .outputfunctioncallitem import (
|
||||
OutputFunctionCallItem,
|
||||
OutputFunctionCallItemTypedDict,
|
||||
)
|
||||
from .outputimagegenerationcallitem import (
|
||||
OutputImageGenerationCallItem,
|
||||
OutputImageGenerationCallItemTypedDict,
|
||||
)
|
||||
from .outputmessageitem import OutputMessageItem, OutputMessageItemTypedDict
|
||||
from .outputreasoningitem import OutputReasoningItem, OutputReasoningItemTypedDict
|
||||
from .outputservertoolitem import OutputServerToolItem, OutputServerToolItemTypedDict
|
||||
from .outputwebsearchcallitem import (
|
||||
OutputWebSearchCallItem,
|
||||
OutputWebSearchCallItemTypedDict,
|
||||
)
|
||||
from typing import Union
|
||||
from typing_extensions import TypeAliasType
|
||||
|
||||
|
||||
OutputItemsTypedDict = TypeAliasType(
|
||||
"OutputItemsTypedDict",
|
||||
Union[
|
||||
OutputWebSearchCallItemTypedDict,
|
||||
OutputFileSearchCallItemTypedDict,
|
||||
OutputImageGenerationCallItemTypedDict,
|
||||
OutputServerToolItemTypedDict,
|
||||
OutputMessageItemTypedDict,
|
||||
OutputFunctionCallItemTypedDict,
|
||||
OutputReasoningItemTypedDict,
|
||||
],
|
||||
)
|
||||
r"""An output item from the response"""
|
||||
|
||||
|
||||
OutputItems = TypeAliasType(
|
||||
"OutputItems",
|
||||
Union[
|
||||
OutputWebSearchCallItem,
|
||||
OutputFileSearchCallItem,
|
||||
OutputImageGenerationCallItem,
|
||||
OutputServerToolItem,
|
||||
OutputMessageItem,
|
||||
OutputFunctionCallItem,
|
||||
OutputReasoningItem,
|
||||
],
|
||||
)
|
||||
r"""An output item from the response"""
|
||||
Reference in New Issue
Block a user