You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .speakeasy/in.openapi.yaml
+116Lines changed: 116 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -12149,6 +12149,31 @@ components:
12149
12149
- 'tool_use_id'
12150
12150
- 'content'
12151
12151
type: 'object'
12152
+
MessagesBashToolResultBlock:
12153
+
description: 'Output of a sandbox-executed `openrouter:bash` call from a prior assistant turn. Accepted on replay and dropped before the provider request — Anthropic has no equivalent block.'
12154
+
example:
12155
+
content:
12156
+
command: 'ls'
12157
+
exitCode: 0
12158
+
stderr: ''
12159
+
stdout: "README.md\n"
12160
+
tool_use_id: 'srvtoolu_01abc'
12161
+
type: 'openrouter_bash_tool_result'
12162
+
properties:
12163
+
content:
12164
+
additionalProperties: {}
12165
+
type: 'object'
12166
+
tool_use_id:
12167
+
type: 'string'
12168
+
type:
12169
+
enum:
12170
+
- 'openrouter_bash_tool_result'
12171
+
type: 'string'
12172
+
required:
12173
+
- 'type'
12174
+
- 'tool_use_id'
12175
+
- 'content'
12176
+
type: 'object'
12152
12177
MessagesContentBlockDeltaEvent:
12153
12178
description: 'Event sent when content is added to a content block'
description: 'Output of an `openrouter:shell` call from a prior assistant turn. Accepted on replay and dropped before the provider request — Anthropic has no equivalent block.'
13334
+
example:
13335
+
content:
13336
+
output:
13337
+
- outcome:
13338
+
exit_code: 0
13339
+
type: 'exit'
13340
+
stderr: ''
13341
+
stdout: "README.md\n"
13342
+
tool_use_id: 'srvtoolu_01abc'
13343
+
type: 'openrouter_shell_tool_result'
13344
+
properties:
13345
+
content:
13346
+
additionalProperties: {}
13347
+
type: 'object'
13348
+
tool_use_id:
13349
+
type: 'string'
13350
+
type:
13351
+
enum:
13352
+
- 'openrouter_shell_tool_result'
13353
+
type: 'string'
13354
+
required:
13355
+
- 'type'
13356
+
- 'tool_use_id'
13357
+
- 'content'
13358
+
type: 'object'
13302
13359
MessagesStartEvent:
13303
13360
description: 'Event sent at the start of a streaming message'
13304
13361
example:
@@ -17171,6 +17228,31 @@ components:
17171
17228
required:
17172
17229
- 'type'
17173
17230
type: 'object'
17231
+
ORAnthropicBashToolResult:
17232
+
description: 'Output of an `openrouter:bash` call executed in the OpenRouter sandbox (`engine: ''openrouter''`)'
description: 'Output of an `openrouter:shell` call executed in the OpenRouter sandbox'
17338
+
example:
17339
+
content:
17340
+
output:
17341
+
- outcome:
17342
+
exit_code: 0
17343
+
type: 'exit'
17344
+
stderr: ''
17345
+
stdout: "README.md\n"
17346
+
tool_use_id: 'srvtoolu_01abc'
17347
+
type: 'openrouter_shell_tool_result'
17348
+
properties:
17349
+
content:
17350
+
additionalProperties: {}
17351
+
type: 'object'
17352
+
tool_use_id:
17353
+
type: 'string'
17354
+
type:
17355
+
enum:
17356
+
- 'openrouter_shell_tool_result'
17357
+
type: 'string'
17358
+
required:
17359
+
- 'type'
17360
+
- 'tool_use_id'
17361
+
- 'content'
17362
+
type: 'object'
17250
17363
ORAnthropicStopReason:
17251
17364
enum:
17252
17365
- 'end_turn'
@@ -25617,6 +25730,9 @@ paths:
25617
25730
description: 'Dimension to filter on. Use the /meta endpoint for available dimensions.'
25618
25731
example: 'model'
25619
25732
type: 'string'
25733
+
include_unset:
25734
+
description: 'Include rows where the dimension has no value. Applies only to the `in` and `not_in` operators and dimensions that have an unset bucket.'
0 commit comments