Skip to content
Closed
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
8 changes: 6 additions & 2 deletions src/resources/responses/responses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export interface ComputerTool {
/**
* The type of the computer use tool. Always `computer_use_preview`.
*/
type: 'computer-preview';
type: 'computer_use_preview';
}

/**
Expand Down Expand Up @@ -288,7 +288,11 @@ export interface Response {
*/
created_at: number;

output_text: string;
/**
* SDK-only convenience property that contains the aggregated text output from all
* output_text items in the output array, if any are present
*/
output_text: string | null;

/**
* An error object returned when the model fails to generate a Response.
Expand Down
Loading