Files
openrouter-python-sdk-retry…/src/openrouter/components/computeruseservertool.py
T

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