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
18 changes: 15 additions & 3 deletions .speakeasy/in.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19215,6 +19215,9 @@ components:
container_id:
description: 'The canonical container id the command ran under — the `{container_id}` for the Container Files API, reusable as a `container_reference` in later requests. Present on every sandbox-executed call, even when no files changed.'
type: 'string'
error:
description: 'The error message when the sandbox call failed before producing a result (for example, the per-user container limit was reached). Set together with `status: ''failed''`; absent on a successful call. A non-zero `exitCode` is a command failure, not a tool failure.'
type: 'string'
exitCode:
type: 'integer'
files:
Expand Down Expand Up @@ -19247,7 +19250,7 @@ components:
id:
type: 'string'
status:
$ref: '#/components/schemas/ToolCallStatus'
$ref: '#/components/schemas/FailableToolCallStatus'
stderr:
type: 'string'
stdout:
Expand Down Expand Up @@ -20443,7 +20446,7 @@ components:
- 'status'
type: 'object'
OutputShellCallOutputItem:
description: 'A native `shell_call_output` item matching OpenAI''s Responses API shape. Carries per-command stdout, stderr, and the exit/timeout outcome.'
description: 'A native `shell_call_output` item matching OpenAI''s Responses API shape. Carries per-command stdout, stderr, and the exit/timeout outcome. A sandbox failure terminates the item as `incomplete` with `error` set.'
example:
call_id: 'call_abc123'
id: 'sho_abc123'
Expand All @@ -20461,6 +20464,9 @@ components:
container_id:
description: 'The canonical container id the command ran under — the `{container_id}` for the Container Files API, reusable as a `container_reference` in later requests. Present on every sandbox-executed call, even when no files changed.'
type: 'string'
error:
description: 'The error message when the sandbox call failed before producing a result (for example, the per-user container limit was reached). Set together with `status: ''incomplete''` and an empty `output`; absent on a successful call.'
type: 'string'
files:
description: 'Citations for the files the sandbox command created or modified, most-recently-touched first (at most 10). Retrieve them via the Container Files API.'
items:
Expand Down Expand Up @@ -20560,6 +20566,9 @@ components:
container_id:
description: 'The canonical container id the command ran under — the `{container_id}` for the Container Files API, reusable as a `container_reference` in later requests. Present on every sandbox-executed call, even when no files changed.'
type: 'string'
error:
description: 'The error message when the sandbox call failed before producing a result (for example, the per-user container limit was reached). Set together with `status: ''failed''`; absent on a successful call. `output` is omitted when `error` is set.'
type: 'string'
files:
description: 'Citations for the files the sandbox command created or modified, most-recently-touched first (at most 10). Retrieve them via the Container Files API.'
items:
Expand Down Expand Up @@ -20594,7 +20603,7 @@ components:
$ref: '#/components/schemas/ShellCallOutputContent'
type: 'array'
status:
$ref: '#/components/schemas/ToolCallStatus'
$ref: '#/components/schemas/FailableToolCallStatus'
type:
enum:
- 'openrouter:shell'
Expand Down Expand Up @@ -24267,6 +24276,9 @@ components:
container_id:
description: 'The canonical container id the command ran under — the `{container_id}` for the Container Files API, reusable as a `container_reference` in later requests. Present on every sandbox-executed call, even when no files changed.'
type: 'string'
error:
description: 'The error message when the sandbox call failed before producing a result, as echoed from a failed `shell_call_output` emission.'
type: 'string'
files:
description: 'Citations for the files the sandbox command created or modified, most-recently-touched first (at most 10). Retrieve them via the Container Files API.'
items:
Expand Down
Loading