Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/types/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2041,12 +2041,17 @@ export declare interface SandboxEnvironmentSpecCodeExecutionEnvironment {
/** The computer use environment with customized settings. */
export declare interface SandboxEnvironmentSpecComputerUseEnvironment {}

/** The shell environment with customized settings. */
export declare interface SandboxEnvironmentSpecShellEnvironment {}

/** The specification of a sandbox environment. */
export declare interface SandboxEnvironmentSpec {
/** Optional. The code execution environment. */
codeExecutionEnvironment?: SandboxEnvironmentSpecCodeExecutionEnvironment;
/** Optional. The computer use environment. */
computerUseEnvironment?: SandboxEnvironmentSpecComputerUseEnvironment;
/** Optional. The shell environment. */
shellEnvironment?: SandboxEnvironmentSpecShellEnvironment;
}

/** Config for creating a Sandbox. */
Expand Down
Loading