chore: 🐝 Update SDK - Generate 0.9.2 (#205)

Co-authored-by: speakeasybot <bot@speakeasyapi.dev>
Co-authored-by: speakeasy-github[bot] <128539517+speakeasy-github[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2026-06-11 12:10:31 -04:00
committed by GitHub
co-authored by speakeasybot speakeasy-github[bot] <128539517+speakeasy-github[bot]@users.noreply.github.com>
parent 0c735989c1
commit 0f116c9792
392 changed files with 49644 additions and 2501 deletions
+6
View File
@@ -47,6 +47,8 @@ class ModelTypedDict(TypedDict):
r"""Pricing information for the model"""
supported_parameters: List[Parameter]
r"""List of supported parameters for this model"""
supported_voices: Nullable[List[str]]
r"""List of supported voice identifiers for TTS models. Null for non-TTS models."""
top_provider: TopProviderInfoTypedDict
r"""Information about the top provider for this model"""
description: NotRequired[str]
@@ -97,6 +99,9 @@ class Model(BaseModel):
]
r"""List of supported parameters for this model"""
supported_voices: Nullable[List[str]]
r"""List of supported voice identifiers for TTS models. Null for non-TTS models."""
top_provider: TopProviderInfo
r"""Information about the top provider for this model"""
@@ -127,6 +132,7 @@ class Model(BaseModel):
"hugging_face_id",
"knowledge_cutoff",
"per_request_limits",
"supported_voices",
]
null_default_fields = []