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:
OpenRouter SDK Bot
2026-03-27 15:18:14 -04:00
parent e72a84e82d
commit 5ab44f08f0
375 changed files with 36229 additions and 5480 deletions
+54
View File
@@ -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"""