mirror of
https://github.com/wassname/openrouter-python-sdk-retry-errors.git
synced 2026-07-30 12:20:57 +08:00
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.658.1
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user