ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.658.1

This commit is contained in:
speakeasybot
2025-11-15 18:17:32 +00:00
parent e824ca8a57
commit 6895d9d45b
22 changed files with 376 additions and 54 deletions
@@ -1,12 +1,26 @@
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
from typing import Any, Optional
from typing import Any, Optional, Type, TypeVar, overload
import httpx
from .serializers import unmarshal_json
from openrouter import errors
T = TypeVar("T")
@overload
def unmarshal_json_response(
typ: Type[T], http_res: httpx.Response, body: Optional[str] = None
) -> T: ...
@overload
def unmarshal_json_response(
typ: Any, http_res: httpx.Response, body: Optional[str] = None
) -> Any: ...
def unmarshal_json_response(
typ: Any, http_res: httpx.Response, body: Optional[str] = None