engineering-behavior-observatory 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +202 -0
- package/README.md +151 -0
- package/contracts/codex-app-server-0.150.1/manifest.json +25 -0
- package/contracts/codex-app-server-0.150.1/schema/InitializeParams.json +84 -0
- package/contracts/codex-app-server-0.150.1/schema/JSONRPCMessage.json +137 -0
- package/contracts/codex-app-server-0.150.1/schema/v2/ThreadReadParams.json +17 -0
- package/contracts/codex-app-server-0.150.1/schema/v2/ThreadTokenUsageUpdatedNotification.json +82 -0
- package/contracts/codex-app-server-0.150.1/schema/v2/TurnInterruptParams.json +17 -0
- package/contracts/codex-app-server-0.150.1/types/AskForApproval.ts +5 -0
- package/contracts/codex-app-server-0.150.1/types/ClientNotification.ts +5 -0
- package/contracts/codex-app-server-0.150.1/types/SandboxMode.ts +5 -0
- package/contracts/codex-app-server-0.150.1/types/ThreadReadParams.ts +9 -0
- package/contracts/codex-app-server-0.150.1/types/TokenUsageBreakdown.ts +5 -0
- package/contracts/codex-app-server-0.150.1/types/TurnInterruptParams.ts +5 -0
- package/contracts/codex-app-server-0.153.4/manifest.json +27 -0
- package/contracts/codex-app-server-0.153.4/schema/JSONRPCMessage.json +137 -0
- package/contracts/codex-app-server-0.153.4/schema/v1/InitializeParams.json +84 -0
- package/contracts/codex-app-server-0.153.4/schema/v2/ThreadReadParams.json +17 -0
- package/contracts/codex-app-server-0.153.4/schema/v2/ThreadStartParams.json +515 -0
- package/contracts/codex-app-server-0.153.4/schema/v2/ThreadTokenUsageUpdatedNotification.json +82 -0
- package/contracts/codex-app-server-0.153.4/schema/v2/TurnInterruptParams.json +17 -0
- package/contracts/codex-app-server-0.153.4/schema/v2/TurnStartParams.json +921 -0
- package/contracts/codex-app-server-0.153.4/types/AskForApproval.ts +5 -0
- package/contracts/codex-app-server-0.153.4/types/ClientNotification.ts +5 -0
- package/contracts/codex-app-server-0.153.4/types/SandboxMode.ts +5 -0
- package/contracts/codex-app-server-0.153.4/types/ThreadReadParams.ts +12 -0
- package/contracts/codex-app-server-0.153.4/types/TokenUsageBreakdown.ts +5 -0
- package/contracts/codex-app-server-0.153.4/types/TurnInterruptParams.ts +5 -0
- package/contracts/openhands-agent-server-v1.44.1.json +65 -0
- package/contracts/openhands-agent-server-v1.46.0.json +46 -0
- package/dist/contracts/codex-app-server-0.153.4/types/AskForApproval.d.ts +9 -0
- package/dist/contracts/codex-app-server-0.153.4/types/AskForApproval.js +2 -0
- package/dist/contracts/codex-app-server-0.153.4/types/ClientNotification.d.ts +3 -0
- package/dist/contracts/codex-app-server-0.153.4/types/ClientNotification.js +2 -0
- package/dist/contracts/codex-app-server-0.153.4/types/SandboxMode.d.ts +1 -0
- package/dist/contracts/codex-app-server-0.153.4/types/SandboxMode.js +2 -0
- package/dist/contracts/codex-app-server-0.153.4/types/ThreadReadParams.d.ts +10 -0
- package/dist/contracts/codex-app-server-0.153.4/types/ThreadReadParams.js +2 -0
- package/dist/contracts/codex-app-server-0.153.4/types/TokenUsageBreakdown.d.ts +8 -0
- package/dist/contracts/codex-app-server-0.153.4/types/TokenUsageBreakdown.js +2 -0
- package/dist/contracts/codex-app-server-0.153.4/types/TurnInterruptParams.d.ts +4 -0
- package/dist/contracts/codex-app-server-0.153.4/types/TurnInterruptParams.js +2 -0
- package/dist/src/agent-sdk-normalizer.d.ts +22 -0
- package/dist/src/agent-sdk-normalizer.js +995 -0
- package/dist/src/agent-sdk-run.d.ts +31 -0
- package/dist/src/agent-sdk-run.js +242 -0
- package/dist/src/agent-sdk-runner.d.ts +96 -0
- package/dist/src/agent-sdk-runner.js +407 -0
- package/dist/src/agent-sdk.d.ts +294 -0
- package/dist/src/agent-sdk.js +644 -0
- package/dist/src/aggregation.d.ts +183 -0
- package/dist/src/aggregation.js +513 -0
- package/dist/src/artifacts.d.ts +36 -0
- package/dist/src/artifacts.js +1372 -0
- package/dist/src/atlas-grafana.d.ts +377 -0
- package/dist/src/atlas-grafana.js +47 -0
- package/dist/src/atlas-html.d.ts +2 -0
- package/dist/src/atlas-html.js +34 -0
- package/dist/src/atlas.d.ts +130 -0
- package/dist/src/atlas.js +235 -0
- package/dist/src/behavior-assertions.d.ts +95 -0
- package/dist/src/behavior-assertions.js +154 -0
- package/dist/src/cli.d.ts +5 -0
- package/dist/src/cli.js +957 -0
- package/dist/src/codex-judge.d.ts +44 -0
- package/dist/src/codex-judge.js +214 -0
- package/dist/src/codex-run.d.ts +114 -0
- package/dist/src/codex-run.js +519 -0
- package/dist/src/codex.d.ts +187 -0
- package/dist/src/codex.js +1028 -0
- package/dist/src/contracts.d.ts +155 -0
- package/dist/src/contracts.js +866 -0
- package/dist/src/corpus.d.ts +67 -0
- package/dist/src/corpus.js +540 -0
- package/dist/src/cursor-sdk-runner.d.ts +81 -0
- package/dist/src/cursor-sdk-runner.js +362 -0
- package/dist/src/cursor-sdk.d.ts +81 -0
- package/dist/src/cursor-sdk.js +1078 -0
- package/dist/src/deepseek-adapter.d.ts +152 -0
- package/dist/src/deepseek-adapter.js +777 -0
- package/dist/src/exports.d.ts +69 -0
- package/dist/src/exports.js +966 -0
- package/dist/src/human-calibration.d.ts +167 -0
- package/dist/src/human-calibration.js +618 -0
- package/dist/src/index.d.ts +71 -0
- package/dist/src/index.js +38 -0
- package/dist/src/lifecycle.d.ts +196 -0
- package/dist/src/lifecycle.js +1889 -0
- package/dist/src/normalization-integrity.d.ts +128 -0
- package/dist/src/normalization-integrity.js +429 -0
- package/dist/src/openhands-run.d.ts +36 -0
- package/dist/src/openhands-run.js +415 -0
- package/dist/src/openhands.d.ts +130 -0
- package/dist/src/openhands.js +859 -0
- package/dist/src/pi.d.ts +203 -0
- package/dist/src/pi.js +1345 -0
- package/dist/src/process-protocol.d.ts +245 -0
- package/dist/src/process-protocol.js +1261 -0
- package/dist/src/retained-evidence.d.ts +12 -0
- package/dist/src/retained-evidence.js +201 -0
- package/dist/src/run-bundles.d.ts +193 -0
- package/dist/src/run-bundles.js +993 -0
- package/dist/src/scheduler.d.ts +109 -0
- package/dist/src/scheduler.js +1080 -0
- package/dist/src/semantic-judge.d.ts +194 -0
- package/dist/src/semantic-judge.js +875 -0
- package/dist/src/structural-observations.d.ts +124 -0
- package/dist/src/structural-observations.js +671 -0
- package/dist/src/task-packets.d.ts +115 -0
- package/dist/src/task-packets.js +683 -0
- package/dist/src/uniform-events.d.ts +120 -0
- package/dist/src/uniform-events.js +158 -0
- package/dist/src/verifiers.d.ts +116 -0
- package/dist/src/verifiers.js +819 -0
- package/dist/src/workspaces.d.ts +56 -0
- package/dist/src/workspaces.js +1314 -0
- package/docs/README.md +60 -0
- package/docs/development/README.md +71 -0
- package/docs/development/documentation-sync.md +58 -0
- package/docs/development/extension-contracts.md +307 -0
- package/docs/evaluation/README.md +48 -0
- package/docs/evaluation/aggregation.md +112 -0
- package/docs/evaluation/behavior-assertions.md +45 -0
- package/docs/evaluation/human-calibration.md +170 -0
- package/docs/evaluation/normalization-integrity.md +80 -0
- package/docs/evaluation/semantic-judge.md +188 -0
- package/docs/evaluation/structural-observations.md +84 -0
- package/docs/evaluation/uniform-events.md +131 -0
- package/docs/guides/atlas.md +144 -0
- package/docs/guides/evidence-and-sharing.md +100 -0
- package/docs/guides/operator-guide.md +424 -0
- package/docs/guides/quickstart.md +152 -0
- package/docs/guides/telemetry.md +66 -0
- package/docs/harnesses/README.md +31 -0
- package/docs/harnesses/claude-agent-sdk.md +61 -0
- package/docs/harnesses/codex-harness.md +174 -0
- package/docs/harnesses/cursor-sdk.md +149 -0
- package/docs/harnesses/deepseek-harness.md +134 -0
- package/docs/harnesses/openhands-agent-server.md +153 -0
- package/docs/harnesses/pi-sdk.md +66 -0
- package/docs/reference/README.md +19 -0
- package/docs/reference/agent-sdk-operational-runner.md +118 -0
- package/docs/reference/cli.md +114 -0
- package/docs/reference/contracts.md +222 -0
- package/docs/reference/run-bundle-contract.md +354 -0
- package/docs/reference/run-lifecycle.md +54 -0
- package/examples/cursor-sdk/README.md +11 -0
- package/examples/cursor-sdk/capture-profile.json +1 -0
- package/examples/cursor-sdk/harness.json +1 -0
- package/examples/cursor-sdk/model.json +1 -0
- package/examples/cursor-sdk/native-limits.json +1 -0
- package/examples/cursor-sdk/native-tool-policy.json +1 -0
- package/ontology/behavior-categories.v1.json +46 -0
- package/package.json +66 -0
- package/release/0.1.0/KNOWN_LIMITATIONS.md +35 -0
- package/release/0.1.0/README.md +46 -0
- package/release/0.1.0/reproducibility.json +61 -0
- package/release/0.2.0/KNOWN_LIMITATIONS.md +40 -0
- package/release/0.2.0/README.md +42 -0
- package/release/0.2.0/reproducibility.json +73 -0
- package/release/0.2.1/KNOWN_LIMITATIONS.md +18 -0
- package/release/0.2.1/README.md +63 -0
- package/release/0.2.1/reproducibility.json +73 -0
- package/release/README.md +13 -0
- package/schemas/aggregation.v1.json +293 -0
- package/schemas/behavior-assertions.v1.json +220 -0
- package/schemas/deepseek-runtime-composition.v1.schema.json +122 -0
- package/schemas/experiment.v1.schema.json +188 -0
- package/schemas/human-calibration.v1.json +336 -0
- package/schemas/normalization-integrity.v1.json +302 -0
- package/schemas/run-bundles/v1.json +1040 -0
- package/schemas/run-queue.v1.schema.json +206 -0
- package/schemas/semantic-judge.v1.json +380 -0
- package/schemas/structural-observations.v1.json +131 -0
- package/schemas/task-packet-freeze.v1.schema.json +106 -0
- package/schemas/task-packet.v1.schema.json +234 -0
- package/schemas/uniform-events/v1.json +289 -0
- package/scripts/atlas-grafana.sh +18 -0
|
@@ -0,0 +1,921 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"definitions": {
|
|
4
|
+
"AbsolutePathBuf": {
|
|
5
|
+
"description": "A path that is guaranteed to be absolute and normalized (though it is not guaranteed to be canonicalized or exist on the filesystem).\n\nIMPORTANT: When deserializing an `AbsolutePathBuf`, a base path must be set using [AbsolutePathBufGuard::new]. If no base path is set, the deserialization will fail unless the path being deserialized is already absolute.",
|
|
6
|
+
"type": "string"
|
|
7
|
+
},
|
|
8
|
+
"AdditionalContextEntry": {
|
|
9
|
+
"properties": {
|
|
10
|
+
"kind": {
|
|
11
|
+
"$ref": "#/definitions/AdditionalContextKind"
|
|
12
|
+
},
|
|
13
|
+
"value": {
|
|
14
|
+
"type": "string"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"required": [
|
|
18
|
+
"kind",
|
|
19
|
+
"value"
|
|
20
|
+
],
|
|
21
|
+
"type": "object"
|
|
22
|
+
},
|
|
23
|
+
"AdditionalContextKind": {
|
|
24
|
+
"enum": [
|
|
25
|
+
"untrusted",
|
|
26
|
+
"application"
|
|
27
|
+
],
|
|
28
|
+
"type": "string"
|
|
29
|
+
},
|
|
30
|
+
"ApprovalsReviewer": {
|
|
31
|
+
"description": "Configures who approval requests are routed to for review. Examples include sandbox escapes, blocked network access, MCP approval prompts, and ARC escalations. Defaults to `user`. `auto_review` uses a carefully prompted subagent to gather relevant context and apply a risk-based decision framework before approving or denying the request. The legacy value `guardian_subagent` is accepted for compatibility.",
|
|
32
|
+
"enum": [
|
|
33
|
+
"user",
|
|
34
|
+
"auto_review",
|
|
35
|
+
"guardian_subagent"
|
|
36
|
+
],
|
|
37
|
+
"type": "string"
|
|
38
|
+
},
|
|
39
|
+
"AskForApproval": {
|
|
40
|
+
"oneOf": [
|
|
41
|
+
{
|
|
42
|
+
"enum": [
|
|
43
|
+
"untrusted",
|
|
44
|
+
"on-request",
|
|
45
|
+
"never"
|
|
46
|
+
],
|
|
47
|
+
"type": "string"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"additionalProperties": false,
|
|
51
|
+
"properties": {
|
|
52
|
+
"granular": {
|
|
53
|
+
"properties": {
|
|
54
|
+
"mcp_elicitations": {
|
|
55
|
+
"type": "boolean"
|
|
56
|
+
},
|
|
57
|
+
"request_permissions": {
|
|
58
|
+
"default": false,
|
|
59
|
+
"type": "boolean"
|
|
60
|
+
},
|
|
61
|
+
"rules": {
|
|
62
|
+
"type": "boolean"
|
|
63
|
+
},
|
|
64
|
+
"sandbox_approval": {
|
|
65
|
+
"type": "boolean"
|
|
66
|
+
},
|
|
67
|
+
"skill_approval": {
|
|
68
|
+
"default": false,
|
|
69
|
+
"type": "boolean"
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"required": [
|
|
73
|
+
"mcp_elicitations",
|
|
74
|
+
"rules",
|
|
75
|
+
"sandbox_approval"
|
|
76
|
+
],
|
|
77
|
+
"type": "object"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"required": [
|
|
81
|
+
"granular"
|
|
82
|
+
],
|
|
83
|
+
"title": "GranularAskForApproval",
|
|
84
|
+
"type": "object"
|
|
85
|
+
}
|
|
86
|
+
]
|
|
87
|
+
},
|
|
88
|
+
"ByteRange": {
|
|
89
|
+
"properties": {
|
|
90
|
+
"end": {
|
|
91
|
+
"format": "uint",
|
|
92
|
+
"minimum": 0.0,
|
|
93
|
+
"type": "integer"
|
|
94
|
+
},
|
|
95
|
+
"start": {
|
|
96
|
+
"format": "uint",
|
|
97
|
+
"minimum": 0.0,
|
|
98
|
+
"type": "integer"
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
"required": [
|
|
102
|
+
"end",
|
|
103
|
+
"start"
|
|
104
|
+
],
|
|
105
|
+
"type": "object"
|
|
106
|
+
},
|
|
107
|
+
"CollaborationMode": {
|
|
108
|
+
"description": "Collaboration mode for a Codex session.",
|
|
109
|
+
"properties": {
|
|
110
|
+
"mode": {
|
|
111
|
+
"$ref": "#/definitions/ModeKind"
|
|
112
|
+
},
|
|
113
|
+
"settings": {
|
|
114
|
+
"$ref": "#/definitions/Settings"
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
"required": [
|
|
118
|
+
"mode",
|
|
119
|
+
"settings"
|
|
120
|
+
],
|
|
121
|
+
"type": "object"
|
|
122
|
+
},
|
|
123
|
+
"CyberAccessProgram": {
|
|
124
|
+
"description": "Requested cyber treatment for a ChatGPT-authenticated Codex turn. Authorization and model-tier restrictions remain server-owned.",
|
|
125
|
+
"enum": [
|
|
126
|
+
"standard",
|
|
127
|
+
"daybreakBlue",
|
|
128
|
+
"daybreakRed"
|
|
129
|
+
],
|
|
130
|
+
"type": "string"
|
|
131
|
+
},
|
|
132
|
+
"FunctionCallOutputBody": {
|
|
133
|
+
"anyOf": [
|
|
134
|
+
{
|
|
135
|
+
"type": "string"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"items": {
|
|
139
|
+
"$ref": "#/definitions/FunctionCallOutputContentItem"
|
|
140
|
+
},
|
|
141
|
+
"type": "array"
|
|
142
|
+
}
|
|
143
|
+
]
|
|
144
|
+
},
|
|
145
|
+
"FunctionCallOutputContentItem": {
|
|
146
|
+
"description": "Responses API compatible content items that can be returned by a tool call. This is a subset of ContentItem with the types we support as function call outputs.",
|
|
147
|
+
"oneOf": [
|
|
148
|
+
{
|
|
149
|
+
"properties": {
|
|
150
|
+
"text": {
|
|
151
|
+
"type": "string"
|
|
152
|
+
},
|
|
153
|
+
"type": {
|
|
154
|
+
"enum": [
|
|
155
|
+
"input_text"
|
|
156
|
+
],
|
|
157
|
+
"title": "InputTextFunctionCallOutputContentItemType",
|
|
158
|
+
"type": "string"
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
"required": [
|
|
162
|
+
"text",
|
|
163
|
+
"type"
|
|
164
|
+
],
|
|
165
|
+
"title": "InputTextFunctionCallOutputContentItem",
|
|
166
|
+
"type": "object"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"properties": {
|
|
170
|
+
"detail": {
|
|
171
|
+
"anyOf": [
|
|
172
|
+
{
|
|
173
|
+
"$ref": "#/definitions/ImageDetail"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"type": "null"
|
|
177
|
+
}
|
|
178
|
+
]
|
|
179
|
+
},
|
|
180
|
+
"image_url": {
|
|
181
|
+
"type": "string"
|
|
182
|
+
},
|
|
183
|
+
"type": {
|
|
184
|
+
"enum": [
|
|
185
|
+
"input_image"
|
|
186
|
+
],
|
|
187
|
+
"title": "InputImageFunctionCallOutputContentItemType",
|
|
188
|
+
"type": "string"
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
"required": [
|
|
192
|
+
"image_url",
|
|
193
|
+
"type"
|
|
194
|
+
],
|
|
195
|
+
"title": "InputImageFunctionCallOutputContentItem",
|
|
196
|
+
"type": "object"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"properties": {
|
|
200
|
+
"audio_url": {
|
|
201
|
+
"type": "string"
|
|
202
|
+
},
|
|
203
|
+
"type": {
|
|
204
|
+
"enum": [
|
|
205
|
+
"input_audio"
|
|
206
|
+
],
|
|
207
|
+
"title": "InputAudioFunctionCallOutputContentItemType",
|
|
208
|
+
"type": "string"
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"required": [
|
|
212
|
+
"audio_url",
|
|
213
|
+
"type"
|
|
214
|
+
],
|
|
215
|
+
"title": "InputAudioFunctionCallOutputContentItem",
|
|
216
|
+
"type": "object"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"properties": {
|
|
220
|
+
"encrypted_content": {
|
|
221
|
+
"type": "string"
|
|
222
|
+
},
|
|
223
|
+
"type": {
|
|
224
|
+
"enum": [
|
|
225
|
+
"encrypted_content"
|
|
226
|
+
],
|
|
227
|
+
"title": "EncryptedContentFunctionCallOutputContentItemType",
|
|
228
|
+
"type": "string"
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
"required": [
|
|
232
|
+
"encrypted_content",
|
|
233
|
+
"type"
|
|
234
|
+
],
|
|
235
|
+
"title": "EncryptedContentFunctionCallOutputContentItem",
|
|
236
|
+
"type": "object"
|
|
237
|
+
}
|
|
238
|
+
]
|
|
239
|
+
},
|
|
240
|
+
"ImageDetail": {
|
|
241
|
+
"enum": [
|
|
242
|
+
"auto",
|
|
243
|
+
"low",
|
|
244
|
+
"high",
|
|
245
|
+
"original"
|
|
246
|
+
],
|
|
247
|
+
"type": "string"
|
|
248
|
+
},
|
|
249
|
+
"LegacyAppPathString": {
|
|
250
|
+
"type": "string"
|
|
251
|
+
},
|
|
252
|
+
"ModeKind": {
|
|
253
|
+
"description": "Initial collaboration mode to use when the TUI starts.",
|
|
254
|
+
"enum": [
|
|
255
|
+
"plan",
|
|
256
|
+
"default"
|
|
257
|
+
],
|
|
258
|
+
"type": "string"
|
|
259
|
+
},
|
|
260
|
+
"MultiAgentMode": {
|
|
261
|
+
"description": "Controls the effective multi-agent delegation instructions for a turn. `custom` means the configured mode hint defines the policy instead of a built-in policy.",
|
|
262
|
+
"oneOf": [
|
|
263
|
+
{
|
|
264
|
+
"enum": [
|
|
265
|
+
"explicitRequestOnly",
|
|
266
|
+
"proactive"
|
|
267
|
+
],
|
|
268
|
+
"type": "string"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"additionalProperties": false,
|
|
272
|
+
"properties": {
|
|
273
|
+
"custom": {
|
|
274
|
+
"type": "string"
|
|
275
|
+
}
|
|
276
|
+
},
|
|
277
|
+
"required": [
|
|
278
|
+
"custom"
|
|
279
|
+
],
|
|
280
|
+
"title": "CustomMultiAgentMode",
|
|
281
|
+
"type": "object"
|
|
282
|
+
}
|
|
283
|
+
]
|
|
284
|
+
},
|
|
285
|
+
"NetworkAccess": {
|
|
286
|
+
"enum": [
|
|
287
|
+
"restricted",
|
|
288
|
+
"enabled"
|
|
289
|
+
],
|
|
290
|
+
"type": "string"
|
|
291
|
+
},
|
|
292
|
+
"Personality": {
|
|
293
|
+
"enum": [
|
|
294
|
+
"none",
|
|
295
|
+
"friendly",
|
|
296
|
+
"pragmatic"
|
|
297
|
+
],
|
|
298
|
+
"type": "string"
|
|
299
|
+
},
|
|
300
|
+
"ReasoningEffort": {
|
|
301
|
+
"description": "A non-empty reasoning effort value advertised by the model.",
|
|
302
|
+
"minLength": 1,
|
|
303
|
+
"type": "string"
|
|
304
|
+
},
|
|
305
|
+
"ReasoningSummary": {
|
|
306
|
+
"description": "A summary of the reasoning performed by the model. This can be useful for debugging and understanding the model's reasoning process. See https://platform.openai.com/docs/guides/reasoning?api-mode=responses#reasoning-summaries",
|
|
307
|
+
"oneOf": [
|
|
308
|
+
{
|
|
309
|
+
"enum": [
|
|
310
|
+
"auto",
|
|
311
|
+
"concise",
|
|
312
|
+
"detailed"
|
|
313
|
+
],
|
|
314
|
+
"type": "string"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"description": "Option to disable reasoning summaries.",
|
|
318
|
+
"enum": [
|
|
319
|
+
"none"
|
|
320
|
+
],
|
|
321
|
+
"type": "string"
|
|
322
|
+
}
|
|
323
|
+
]
|
|
324
|
+
},
|
|
325
|
+
"SandboxPolicy": {
|
|
326
|
+
"oneOf": [
|
|
327
|
+
{
|
|
328
|
+
"properties": {
|
|
329
|
+
"type": {
|
|
330
|
+
"enum": [
|
|
331
|
+
"dangerFullAccess"
|
|
332
|
+
],
|
|
333
|
+
"title": "DangerFullAccessSandboxPolicyType",
|
|
334
|
+
"type": "string"
|
|
335
|
+
}
|
|
336
|
+
},
|
|
337
|
+
"required": [
|
|
338
|
+
"type"
|
|
339
|
+
],
|
|
340
|
+
"title": "DangerFullAccessSandboxPolicy",
|
|
341
|
+
"type": "object"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"properties": {
|
|
345
|
+
"networkAccess": {
|
|
346
|
+
"default": false,
|
|
347
|
+
"type": "boolean"
|
|
348
|
+
},
|
|
349
|
+
"type": {
|
|
350
|
+
"enum": [
|
|
351
|
+
"readOnly"
|
|
352
|
+
],
|
|
353
|
+
"title": "ReadOnlySandboxPolicyType",
|
|
354
|
+
"type": "string"
|
|
355
|
+
}
|
|
356
|
+
},
|
|
357
|
+
"required": [
|
|
358
|
+
"type"
|
|
359
|
+
],
|
|
360
|
+
"title": "ReadOnlySandboxPolicy",
|
|
361
|
+
"type": "object"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"properties": {
|
|
365
|
+
"networkAccess": {
|
|
366
|
+
"allOf": [
|
|
367
|
+
{
|
|
368
|
+
"$ref": "#/definitions/NetworkAccess"
|
|
369
|
+
}
|
|
370
|
+
],
|
|
371
|
+
"default": "restricted"
|
|
372
|
+
},
|
|
373
|
+
"type": {
|
|
374
|
+
"enum": [
|
|
375
|
+
"externalSandbox"
|
|
376
|
+
],
|
|
377
|
+
"title": "ExternalSandboxSandboxPolicyType",
|
|
378
|
+
"type": "string"
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
"required": [
|
|
382
|
+
"type"
|
|
383
|
+
],
|
|
384
|
+
"title": "ExternalSandboxSandboxPolicy",
|
|
385
|
+
"type": "object"
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"properties": {
|
|
389
|
+
"excludeSlashTmp": {
|
|
390
|
+
"default": false,
|
|
391
|
+
"type": "boolean"
|
|
392
|
+
},
|
|
393
|
+
"excludeTmpdirEnvVar": {
|
|
394
|
+
"default": false,
|
|
395
|
+
"type": "boolean"
|
|
396
|
+
},
|
|
397
|
+
"networkAccess": {
|
|
398
|
+
"default": false,
|
|
399
|
+
"type": "boolean"
|
|
400
|
+
},
|
|
401
|
+
"type": {
|
|
402
|
+
"enum": [
|
|
403
|
+
"workspaceWrite"
|
|
404
|
+
],
|
|
405
|
+
"title": "WorkspaceWriteSandboxPolicyType",
|
|
406
|
+
"type": "string"
|
|
407
|
+
},
|
|
408
|
+
"writableRoots": {
|
|
409
|
+
"default": [],
|
|
410
|
+
"items": {
|
|
411
|
+
"$ref": "#/definitions/AbsolutePathBuf"
|
|
412
|
+
},
|
|
413
|
+
"type": "array"
|
|
414
|
+
}
|
|
415
|
+
},
|
|
416
|
+
"required": [
|
|
417
|
+
"type"
|
|
418
|
+
],
|
|
419
|
+
"title": "WorkspaceWriteSandboxPolicy",
|
|
420
|
+
"type": "object"
|
|
421
|
+
}
|
|
422
|
+
]
|
|
423
|
+
},
|
|
424
|
+
"Settings": {
|
|
425
|
+
"description": "Settings for a collaboration mode.",
|
|
426
|
+
"properties": {
|
|
427
|
+
"developer_instructions": {
|
|
428
|
+
"type": [
|
|
429
|
+
"string",
|
|
430
|
+
"null"
|
|
431
|
+
]
|
|
432
|
+
},
|
|
433
|
+
"model": {
|
|
434
|
+
"type": "string"
|
|
435
|
+
},
|
|
436
|
+
"reasoning_effort": {
|
|
437
|
+
"anyOf": [
|
|
438
|
+
{
|
|
439
|
+
"$ref": "#/definitions/ReasoningEffort"
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"type": "null"
|
|
443
|
+
}
|
|
444
|
+
]
|
|
445
|
+
}
|
|
446
|
+
},
|
|
447
|
+
"required": [
|
|
448
|
+
"model"
|
|
449
|
+
],
|
|
450
|
+
"type": "object"
|
|
451
|
+
},
|
|
452
|
+
"TextElement": {
|
|
453
|
+
"properties": {
|
|
454
|
+
"byteRange": {
|
|
455
|
+
"allOf": [
|
|
456
|
+
{
|
|
457
|
+
"$ref": "#/definitions/ByteRange"
|
|
458
|
+
}
|
|
459
|
+
],
|
|
460
|
+
"description": "Byte range in the parent `text` buffer that this element occupies."
|
|
461
|
+
},
|
|
462
|
+
"placeholder": {
|
|
463
|
+
"description": "Optional human-readable placeholder for the element, displayed in the UI.",
|
|
464
|
+
"type": [
|
|
465
|
+
"string",
|
|
466
|
+
"null"
|
|
467
|
+
]
|
|
468
|
+
}
|
|
469
|
+
},
|
|
470
|
+
"required": [
|
|
471
|
+
"byteRange"
|
|
472
|
+
],
|
|
473
|
+
"type": "object"
|
|
474
|
+
},
|
|
475
|
+
"TurnEnvironmentParams": {
|
|
476
|
+
"properties": {
|
|
477
|
+
"cwd": {
|
|
478
|
+
"$ref": "#/definitions/LegacyAppPathString"
|
|
479
|
+
},
|
|
480
|
+
"environmentId": {
|
|
481
|
+
"type": "string"
|
|
482
|
+
},
|
|
483
|
+
"runtimeWorkspaceRoots": {
|
|
484
|
+
"description": "Environment-native runtime workspace roots. Omitted defaults to `cwd`.",
|
|
485
|
+
"items": {
|
|
486
|
+
"$ref": "#/definitions/LegacyAppPathString"
|
|
487
|
+
},
|
|
488
|
+
"type": [
|
|
489
|
+
"array",
|
|
490
|
+
"null"
|
|
491
|
+
]
|
|
492
|
+
}
|
|
493
|
+
},
|
|
494
|
+
"required": [
|
|
495
|
+
"cwd",
|
|
496
|
+
"environmentId"
|
|
497
|
+
],
|
|
498
|
+
"type": "object"
|
|
499
|
+
},
|
|
500
|
+
"TurnToolOutput": {
|
|
501
|
+
"properties": {
|
|
502
|
+
"name": {
|
|
503
|
+
"type": "string"
|
|
504
|
+
},
|
|
505
|
+
"namespace": {
|
|
506
|
+
"type": [
|
|
507
|
+
"string",
|
|
508
|
+
"null"
|
|
509
|
+
]
|
|
510
|
+
},
|
|
511
|
+
"output": {
|
|
512
|
+
"$ref": "#/definitions/FunctionCallOutputBody"
|
|
513
|
+
}
|
|
514
|
+
},
|
|
515
|
+
"required": [
|
|
516
|
+
"name",
|
|
517
|
+
"output"
|
|
518
|
+
],
|
|
519
|
+
"type": "object"
|
|
520
|
+
},
|
|
521
|
+
"UserInput": {
|
|
522
|
+
"oneOf": [
|
|
523
|
+
{
|
|
524
|
+
"properties": {
|
|
525
|
+
"text": {
|
|
526
|
+
"type": "string"
|
|
527
|
+
},
|
|
528
|
+
"text_elements": {
|
|
529
|
+
"default": [],
|
|
530
|
+
"description": "UI-defined spans within `text` used to render or persist special elements.",
|
|
531
|
+
"items": {
|
|
532
|
+
"$ref": "#/definitions/TextElement"
|
|
533
|
+
},
|
|
534
|
+
"type": "array"
|
|
535
|
+
},
|
|
536
|
+
"type": {
|
|
537
|
+
"enum": [
|
|
538
|
+
"text"
|
|
539
|
+
],
|
|
540
|
+
"title": "TextUserInputType",
|
|
541
|
+
"type": "string"
|
|
542
|
+
}
|
|
543
|
+
},
|
|
544
|
+
"required": [
|
|
545
|
+
"text",
|
|
546
|
+
"type"
|
|
547
|
+
],
|
|
548
|
+
"title": "TextUserInput",
|
|
549
|
+
"type": "object"
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"properties": {
|
|
553
|
+
"detail": {
|
|
554
|
+
"anyOf": [
|
|
555
|
+
{
|
|
556
|
+
"$ref": "#/definitions/ImageDetail"
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"type": "null"
|
|
560
|
+
}
|
|
561
|
+
],
|
|
562
|
+
"default": null
|
|
563
|
+
},
|
|
564
|
+
"type": {
|
|
565
|
+
"enum": [
|
|
566
|
+
"image"
|
|
567
|
+
],
|
|
568
|
+
"title": "ImageUserInputType",
|
|
569
|
+
"type": "string"
|
|
570
|
+
},
|
|
571
|
+
"url": {
|
|
572
|
+
"type": "string"
|
|
573
|
+
}
|
|
574
|
+
},
|
|
575
|
+
"required": [
|
|
576
|
+
"type",
|
|
577
|
+
"url"
|
|
578
|
+
],
|
|
579
|
+
"title": "ImageUserInput",
|
|
580
|
+
"type": "object"
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"properties": {
|
|
584
|
+
"detail": {
|
|
585
|
+
"anyOf": [
|
|
586
|
+
{
|
|
587
|
+
"$ref": "#/definitions/ImageDetail"
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"type": "null"
|
|
591
|
+
}
|
|
592
|
+
],
|
|
593
|
+
"default": null
|
|
594
|
+
},
|
|
595
|
+
"path": {
|
|
596
|
+
"type": "string"
|
|
597
|
+
},
|
|
598
|
+
"type": {
|
|
599
|
+
"enum": [
|
|
600
|
+
"localImage"
|
|
601
|
+
],
|
|
602
|
+
"title": "LocalImageUserInputType",
|
|
603
|
+
"type": "string"
|
|
604
|
+
}
|
|
605
|
+
},
|
|
606
|
+
"required": [
|
|
607
|
+
"path",
|
|
608
|
+
"type"
|
|
609
|
+
],
|
|
610
|
+
"title": "LocalImageUserInput",
|
|
611
|
+
"type": "object"
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"properties": {
|
|
615
|
+
"type": {
|
|
616
|
+
"enum": [
|
|
617
|
+
"audio"
|
|
618
|
+
],
|
|
619
|
+
"title": "AudioUserInputType",
|
|
620
|
+
"type": "string"
|
|
621
|
+
},
|
|
622
|
+
"url": {
|
|
623
|
+
"type": "string"
|
|
624
|
+
}
|
|
625
|
+
},
|
|
626
|
+
"required": [
|
|
627
|
+
"type",
|
|
628
|
+
"url"
|
|
629
|
+
],
|
|
630
|
+
"title": "AudioUserInput",
|
|
631
|
+
"type": "object"
|
|
632
|
+
},
|
|
633
|
+
{
|
|
634
|
+
"properties": {
|
|
635
|
+
"path": {
|
|
636
|
+
"type": "string"
|
|
637
|
+
},
|
|
638
|
+
"type": {
|
|
639
|
+
"enum": [
|
|
640
|
+
"localAudio"
|
|
641
|
+
],
|
|
642
|
+
"title": "LocalAudioUserInputType",
|
|
643
|
+
"type": "string"
|
|
644
|
+
}
|
|
645
|
+
},
|
|
646
|
+
"required": [
|
|
647
|
+
"path",
|
|
648
|
+
"type"
|
|
649
|
+
],
|
|
650
|
+
"title": "LocalAudioUserInput",
|
|
651
|
+
"type": "object"
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
"properties": {
|
|
655
|
+
"name": {
|
|
656
|
+
"type": "string"
|
|
657
|
+
},
|
|
658
|
+
"path": {
|
|
659
|
+
"type": "string"
|
|
660
|
+
},
|
|
661
|
+
"type": {
|
|
662
|
+
"enum": [
|
|
663
|
+
"skill"
|
|
664
|
+
],
|
|
665
|
+
"title": "SkillUserInputType",
|
|
666
|
+
"type": "string"
|
|
667
|
+
}
|
|
668
|
+
},
|
|
669
|
+
"required": [
|
|
670
|
+
"name",
|
|
671
|
+
"path",
|
|
672
|
+
"type"
|
|
673
|
+
],
|
|
674
|
+
"title": "SkillUserInput",
|
|
675
|
+
"type": "object"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"properties": {
|
|
679
|
+
"name": {
|
|
680
|
+
"type": "string"
|
|
681
|
+
},
|
|
682
|
+
"path": {
|
|
683
|
+
"type": "string"
|
|
684
|
+
},
|
|
685
|
+
"type": {
|
|
686
|
+
"enum": [
|
|
687
|
+
"mention"
|
|
688
|
+
],
|
|
689
|
+
"title": "MentionUserInputType",
|
|
690
|
+
"type": "string"
|
|
691
|
+
}
|
|
692
|
+
},
|
|
693
|
+
"required": [
|
|
694
|
+
"name",
|
|
695
|
+
"path",
|
|
696
|
+
"type"
|
|
697
|
+
],
|
|
698
|
+
"title": "MentionUserInput",
|
|
699
|
+
"type": "object"
|
|
700
|
+
}
|
|
701
|
+
]
|
|
702
|
+
}
|
|
703
|
+
},
|
|
704
|
+
"properties": {
|
|
705
|
+
"additionalContext": {
|
|
706
|
+
"additionalProperties": {
|
|
707
|
+
"$ref": "#/definitions/AdditionalContextEntry"
|
|
708
|
+
},
|
|
709
|
+
"description": "Optional client-provided context fragments keyed by an opaque source identifier.",
|
|
710
|
+
"type": [
|
|
711
|
+
"object",
|
|
712
|
+
"null"
|
|
713
|
+
]
|
|
714
|
+
},
|
|
715
|
+
"approvalPolicy": {
|
|
716
|
+
"anyOf": [
|
|
717
|
+
{
|
|
718
|
+
"$ref": "#/definitions/AskForApproval"
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
"type": "null"
|
|
722
|
+
}
|
|
723
|
+
],
|
|
724
|
+
"description": "Override the approval policy for this turn and subsequent turns."
|
|
725
|
+
},
|
|
726
|
+
"approvalsReviewer": {
|
|
727
|
+
"anyOf": [
|
|
728
|
+
{
|
|
729
|
+
"$ref": "#/definitions/ApprovalsReviewer"
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"type": "null"
|
|
733
|
+
}
|
|
734
|
+
],
|
|
735
|
+
"description": "Override where approval requests are routed for review on this turn and subsequent turns."
|
|
736
|
+
},
|
|
737
|
+
"clientUserMessageId": {
|
|
738
|
+
"type": [
|
|
739
|
+
"string",
|
|
740
|
+
"null"
|
|
741
|
+
]
|
|
742
|
+
},
|
|
743
|
+
"collaborationMode": {
|
|
744
|
+
"anyOf": [
|
|
745
|
+
{
|
|
746
|
+
"$ref": "#/definitions/CollaborationMode"
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
"type": "null"
|
|
750
|
+
}
|
|
751
|
+
],
|
|
752
|
+
"description": "EXPERIMENTAL - Set a pre-set collaboration mode. Takes precedence over model, reasoning_effort, and developer instructions if set.\n\nFor `collaboration_mode.settings.developer_instructions`, `null` means \"use the built-in instructions for the selected mode\"."
|
|
753
|
+
},
|
|
754
|
+
"cwd": {
|
|
755
|
+
"description": "Override the working directory for this turn and subsequent turns.",
|
|
756
|
+
"type": [
|
|
757
|
+
"string",
|
|
758
|
+
"null"
|
|
759
|
+
]
|
|
760
|
+
},
|
|
761
|
+
"cyberAccessProgram": {
|
|
762
|
+
"anyOf": [
|
|
763
|
+
{
|
|
764
|
+
"$ref": "#/definitions/CyberAccessProgram"
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"type": "null"
|
|
768
|
+
}
|
|
769
|
+
],
|
|
770
|
+
"description": "EXPERIMENTAL - Request a workspace-authorized cyber program for this turn. Omission preserves automatic behavior. This does not grant access."
|
|
771
|
+
},
|
|
772
|
+
"effort": {
|
|
773
|
+
"anyOf": [
|
|
774
|
+
{
|
|
775
|
+
"$ref": "#/definitions/ReasoningEffort"
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"type": "null"
|
|
779
|
+
}
|
|
780
|
+
],
|
|
781
|
+
"description": "Override the reasoning effort for this turn and subsequent turns."
|
|
782
|
+
},
|
|
783
|
+
"environments": {
|
|
784
|
+
"description": "Optional environments for this turn and subsequent turns.\n\nOmitted uses the thread sticky environments. Empty disables environment access for this turn. Non-empty selects the first environment as the current turn environment for this turn.",
|
|
785
|
+
"items": {
|
|
786
|
+
"$ref": "#/definitions/TurnEnvironmentParams"
|
|
787
|
+
},
|
|
788
|
+
"type": [
|
|
789
|
+
"array",
|
|
790
|
+
"null"
|
|
791
|
+
]
|
|
792
|
+
},
|
|
793
|
+
"input": {
|
|
794
|
+
"items": {
|
|
795
|
+
"$ref": "#/definitions/UserInput"
|
|
796
|
+
},
|
|
797
|
+
"type": "array"
|
|
798
|
+
},
|
|
799
|
+
"model": {
|
|
800
|
+
"description": "Override the model for this turn and subsequent turns.",
|
|
801
|
+
"type": [
|
|
802
|
+
"string",
|
|
803
|
+
"null"
|
|
804
|
+
]
|
|
805
|
+
},
|
|
806
|
+
"multiAgentMode": {
|
|
807
|
+
"anyOf": [
|
|
808
|
+
{
|
|
809
|
+
"$ref": "#/definitions/MultiAgentMode"
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"type": "null"
|
|
813
|
+
}
|
|
814
|
+
],
|
|
815
|
+
"description": "@deprecated Ignored. Use `effort: \"ultra\"` for proactive multi-agent behavior."
|
|
816
|
+
},
|
|
817
|
+
"outputSchema": {
|
|
818
|
+
"description": "Optional JSON Schema used to constrain the final assistant message for this turn."
|
|
819
|
+
},
|
|
820
|
+
"permissions": {
|
|
821
|
+
"description": "Select a named permissions profile id for this turn and subsequent turns. Cannot be combined with `sandboxPolicy`.",
|
|
822
|
+
"type": [
|
|
823
|
+
"string",
|
|
824
|
+
"null"
|
|
825
|
+
]
|
|
826
|
+
},
|
|
827
|
+
"personality": {
|
|
828
|
+
"anyOf": [
|
|
829
|
+
{
|
|
830
|
+
"$ref": "#/definitions/Personality"
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"type": "null"
|
|
834
|
+
}
|
|
835
|
+
],
|
|
836
|
+
"description": "Override the personality for this turn and subsequent turns."
|
|
837
|
+
},
|
|
838
|
+
"responsesapiClientMetadata": {
|
|
839
|
+
"additionalProperties": {
|
|
840
|
+
"type": "string"
|
|
841
|
+
},
|
|
842
|
+
"description": "Optional metadata to enrich Codex's ResponsesAPI turn metadata.\n\nEntries are flattened into the JSON string sent as `client_metadata[\"x-codex-turn-metadata\"]` on ResponsesAPI HTTP and websocket requests.\n\nThey are not sent as top-level ResponsesAPI `client_metadata` keys, and reserved keys such as `session_id`, `thread_id`, `turn_id`, and `window_id` cannot be overridden.",
|
|
843
|
+
"type": [
|
|
844
|
+
"object",
|
|
845
|
+
"null"
|
|
846
|
+
]
|
|
847
|
+
},
|
|
848
|
+
"runtimeWorkspaceRoots": {
|
|
849
|
+
"description": "Replace the thread's runtime workspace roots for this turn and subsequent turns. Paths must be absolute.",
|
|
850
|
+
"items": {
|
|
851
|
+
"$ref": "#/definitions/AbsolutePathBuf"
|
|
852
|
+
},
|
|
853
|
+
"type": [
|
|
854
|
+
"array",
|
|
855
|
+
"null"
|
|
856
|
+
]
|
|
857
|
+
},
|
|
858
|
+
"sandboxPolicy": {
|
|
859
|
+
"anyOf": [
|
|
860
|
+
{
|
|
861
|
+
"$ref": "#/definitions/SandboxPolicy"
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
"type": "null"
|
|
865
|
+
}
|
|
866
|
+
],
|
|
867
|
+
"description": "Override the sandbox policy for this turn and subsequent turns."
|
|
868
|
+
},
|
|
869
|
+
"serviceTier": {
|
|
870
|
+
"description": "Override the service tier for this turn and subsequent turns.",
|
|
871
|
+
"type": [
|
|
872
|
+
"string",
|
|
873
|
+
"null"
|
|
874
|
+
]
|
|
875
|
+
},
|
|
876
|
+
"serviceTierForTurn": {
|
|
877
|
+
"description": "Override the service tier only when this request starts a new turn. Use \"default\" for standard speed. Omitted or null inherits the thread's tier. Does not change the thread's tier or a turn being steered.",
|
|
878
|
+
"type": [
|
|
879
|
+
"string",
|
|
880
|
+
"null"
|
|
881
|
+
]
|
|
882
|
+
},
|
|
883
|
+
"summary": {
|
|
884
|
+
"anyOf": [
|
|
885
|
+
{
|
|
886
|
+
"$ref": "#/definitions/ReasoningSummary"
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
"type": "null"
|
|
890
|
+
}
|
|
891
|
+
],
|
|
892
|
+
"description": "Override the reasoning summary for this turn and subsequent turns."
|
|
893
|
+
},
|
|
894
|
+
"threadId": {
|
|
895
|
+
"type": "string"
|
|
896
|
+
},
|
|
897
|
+
"toolOutput": {
|
|
898
|
+
"anyOf": [
|
|
899
|
+
{
|
|
900
|
+
"$ref": "#/definitions/TurnToolOutput"
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
"type": "null"
|
|
904
|
+
}
|
|
905
|
+
]
|
|
906
|
+
},
|
|
907
|
+
"turnTrigger": {
|
|
908
|
+
"description": "Optional source classification for the caller that starts this turn. Ignored when this request steers an already-active turn.",
|
|
909
|
+
"type": [
|
|
910
|
+
"string",
|
|
911
|
+
"null"
|
|
912
|
+
]
|
|
913
|
+
}
|
|
914
|
+
},
|
|
915
|
+
"required": [
|
|
916
|
+
"input",
|
|
917
|
+
"threadId"
|
|
918
|
+
],
|
|
919
|
+
"title": "TurnStartParams",
|
|
920
|
+
"type": "object"
|
|
921
|
+
}
|