mirror of
https://github.com/wassname/openrouter-python-sdk-retry-errors.git
synced 2026-07-31 12:30:30 +08:00
19 lines
358 B
Python
19 lines
358 B
Python
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
|
|
from __future__ import annotations
|
|
from openrouter.types import UnrecognizedStr
|
|
from typing import Literal, Union
|
|
|
|
|
|
ReasoningEffort = Union[
|
|
Literal[
|
|
"xhigh",
|
|
"high",
|
|
"medium",
|
|
"low",
|
|
"minimal",
|
|
"none",
|
|
],
|
|
UnrecognizedStr,
|
|
]
|