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
28 changes: 6 additions & 22 deletions .speakeasy/in.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7588,35 +7588,19 @@ components:
sequence_number: 6
type: 'response.custom_tool_call_input.done'
CustomToolCallItem:
allOf:
- $ref: '#/components/schemas/OpenAIResponseCustomToolCall'
- properties:
status:
$ref: '#/components/schemas/ToolCallStatus'
type: 'object'
description: 'A call to a custom (freeform-grammar) tool created by the model — distinct from `function_call`. Used for tools like Codex CLI''s `apply_patch` whose payload is opaque text rather than JSON arguments.'
example:
call_id: 'call-abc123'
id: 'ctc-abc123'
input: "*** Begin Patch\n*** End Patch"
name: 'apply_patch'
type: 'custom_tool_call'
properties:
call_id:
type: 'string'
id:
type: 'string'
input:
type: 'string'
name:
type: 'string'
namespace:
description: 'Namespace qualifier for tools registered as part of a namespace tool group (e.g. an MCP server)'
type: 'string'
type:
enum:
- 'custom_tool_call'
type: 'string'
required:
- 'type'
- 'call_id'
- 'name'
- 'input'
type: 'object'
CustomToolCallOutputItem:
allOf:
- $ref: '#/components/schemas/OpenAIResponseCustomToolCallOutput'
Expand Down
Loading