Skip to content
Open
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
7 changes: 6 additions & 1 deletion src/interactions/resources/interactions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2345,10 +2345,15 @@ export namespace Tool {
export interface ComputerUse {
type: 'computer_use';

/**
* Whether enable the prompt injection detection check on computer-use request.
*/
enable_prompt_injection_detection?: boolean;

/**
* The environment being operated.
*/
environment?: 'browser';
environment?: 'browser' | 'mobile' | 'desktop';

/**
* The list of predefined functions that are excluded from the model call.
Expand Down
Loading