mirror of
https://github.com/wassname/openrouter-python-sdk-retry-errors.git
synced 2026-07-31 12:30:30 +08:00
43 lines
879 B
Python
43 lines
879 B
Python
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
|
|
from __future__ import annotations
|
|
from openrouter.types import BaseModel, UnrecognizedStr
|
|
from typing import Literal, Union
|
|
from typing_extensions import TypedDict
|
|
|
|
|
|
Environment = Union[
|
|
Literal[
|
|
"windows",
|
|
"mac",
|
|
"linux",
|
|
"ubuntu",
|
|
"browser",
|
|
],
|
|
UnrecognizedStr,
|
|
]
|
|
|
|
|
|
ComputerUseServerToolType = Literal["computer_use_preview",]
|
|
|
|
|
|
class ComputerUseServerToolTypedDict(TypedDict):
|
|
r"""Computer use preview tool configuration"""
|
|
|
|
display_height: int
|
|
display_width: int
|
|
environment: Environment
|
|
type: ComputerUseServerToolType
|
|
|
|
|
|
class ComputerUseServerTool(BaseModel):
|
|
r"""Computer use preview tool configuration"""
|
|
|
|
display_height: int
|
|
|
|
display_width: int
|
|
|
|
environment: Environment
|
|
|
|
type: ComputerUseServerToolType
|