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
description: 'The raw tool-call arguments string as emitted by the model. Echo back unchanged when replaying history; used verbatim to preserve provider prompt-cache prefixes.'
description: 'An openrouter:subagent server tool output item'
19402
19456
example:
@@ -22680,6 +22734,11 @@ components:
22680
22734
required:
22681
22735
- 'commands'
22682
22736
type: 'object'
22737
+
arguments:
22738
+
description: 'The raw tool-call arguments string as emitted by the model. Echo back unchanged when replaying history; used verbatim to preserve provider prompt-cache prefixes.'
22739
+
type:
22740
+
- 'string'
22741
+
- 'null'
22683
22742
call_id:
22684
22743
type: 'string'
22685
22744
environment: {}
@@ -22700,13 +22759,58 @@ components:
22700
22759
- 'call_id'
22701
22760
- 'action'
22702
22761
type: 'object'
22762
+
ShellCallOutputContent:
22763
+
additionalProperties: {}
22764
+
description: 'Captured stdout and stderr for one command of a shell call, with its exit or timeout outcome.'
22765
+
example:
22766
+
outcome:
22767
+
exit_code: 0
22768
+
type: 'exit'
22769
+
stderr: ''
22770
+
stdout: "total 0\n"
22771
+
properties:
22772
+
outcome:
22773
+
oneOf:
22774
+
- additionalProperties: {}
22775
+
properties:
22776
+
exit_code:
22777
+
type: 'integer'
22778
+
type:
22779
+
enum:
22780
+
- 'exit'
22781
+
type: 'string'
22782
+
required:
22783
+
- 'type'
22784
+
- 'exit_code'
22785
+
type: 'object'
22786
+
- additionalProperties: {}
22787
+
properties:
22788
+
type:
22789
+
enum:
22790
+
- 'timeout'
22791
+
type: 'string'
22792
+
required:
22793
+
- 'type'
22794
+
type: 'object'
22795
+
stderr:
22796
+
type: 'string'
22797
+
stdout:
22798
+
type: 'string'
22799
+
required:
22800
+
- 'stdout'
22801
+
- 'stderr'
22802
+
- 'outcome'
22803
+
type: 'object'
22703
22804
ShellCallOutputItem:
22704
22805
description: 'Output from a shell command execution (newer variant)'
0 commit comments