@meistrari/agent-core 0.0.0 → 0.1.0

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.
Files changed (83) hide show
  1. package/README.md +24 -3
  2. package/bin/supervisor.ts +116 -0
  3. package/package.json +42 -3
  4. package/scripts/build-supervisor-executable.ts +32 -0
  5. package/src/agents/agent-error-serializer.ts +23 -0
  6. package/src/agents/agent-event-stream.ts +81 -0
  7. package/src/agents/agent-id.ts +17 -0
  8. package/src/agents/agent-operation.ts +11 -0
  9. package/src/agents/agent-provider.ts +37 -0
  10. package/src/agents/agent-run.ts +32 -0
  11. package/src/agents/agent-runtime-error.ts +161 -0
  12. package/src/agents/agent-session-events.ts +32 -0
  13. package/src/agents/agent-tool-runner.ts +83 -0
  14. package/src/agents/agent-tool.ts +111 -0
  15. package/src/agents/author-context.ts +36 -0
  16. package/src/agents/claude/claude-command-mapper.ts +234 -0
  17. package/src/agents/claude/claude-event-mapper.ts +736 -0
  18. package/src/agents/claude/claude-provider.ts +191 -0
  19. package/src/agents/claude/claude-run.ts +464 -0
  20. package/src/agents/claude/claude-tool-mapper.ts +186 -0
  21. package/src/agents/claude/index.ts +1 -0
  22. package/src/agents/codex/codex-auth.ts +34 -0
  23. package/src/agents/codex/codex-command-mapper.ts +78 -0
  24. package/src/agents/codex/codex-event-mapper.ts +708 -0
  25. package/src/agents/codex/codex-json-rpc-client.ts +326 -0
  26. package/src/agents/codex/codex-protocol.ts +36 -0
  27. package/src/agents/codex/codex-provider.ts +1050 -0
  28. package/src/agents/codex/codex-run.ts +404 -0
  29. package/src/agents/codex/codex-skill-catalog.ts +158 -0
  30. package/src/agents/codex/codex-skill-roots.ts +19 -0
  31. package/src/agents/codex/codex-tool-mapper.ts +55 -0
  32. package/src/agents/codex/codex.errors.ts +68 -0
  33. package/src/agents/codex/generated/meta.gen.ts +606 -0
  34. package/src/agents/codex/generated/namespaces.gen.ts +311 -0
  35. package/src/agents/codex/generated/schema.gen.ts +34883 -0
  36. package/src/agents/codex/index.ts +2 -0
  37. package/src/agents/index.ts +14 -0
  38. package/src/agents/input-attachment-preparation.ts +86 -0
  39. package/src/agents/input-attachment.errors.ts +16 -0
  40. package/src/agents/instructions.ts +8 -0
  41. package/src/agents/materialized-input-attachment.ts +26 -0
  42. package/src/agents/message-id.ts +23 -0
  43. package/src/agents/normalize.ts +8 -0
  44. package/src/agents/sandbox-environment.ts +1 -0
  45. package/src/agents/tools/ping.tool.ts +13 -0
  46. package/src/agents/user-input-request.ts +470 -0
  47. package/src/provenance.gen.ts +3 -3
  48. package/src/supervisor/agent-provider-factory.ts +189 -0
  49. package/src/supervisor/bootstrap-binder.ts +125 -0
  50. package/src/supervisor/config.ts +49 -0
  51. package/src/supervisor/control-authority-verifier.ts +135 -0
  52. package/src/supervisor/create-supervisor-runtime.ts +25 -0
  53. package/src/supervisor/errors.ts +24 -0
  54. package/src/supervisor/index.ts +34 -0
  55. package/src/supervisor/persistence/json.ts +21 -0
  56. package/src/supervisor/persistence/state-discovery.ts +56 -0
  57. package/src/supervisor/persistence/supervisor-store.ts +364 -0
  58. package/src/supervisor/ports/index.ts +109 -0
  59. package/src/supervisor/provider-factory.ts +37 -0
  60. package/src/supervisor/resident.ts +143 -0
  61. package/src/supervisor/rpc-client.ts +120 -0
  62. package/src/supervisor/runtime-handler.ts +309 -0
  63. package/src/supervisor/websocket-server.ts +434 -0
  64. package/src/supervisor-protocol/bootstrap.ts +1 -1
  65. package/src/template-onboarding.ts +47 -0
  66. package/src/testing/es256-test-keys.ts +73 -0
  67. package/src/testing/in-memory-runtime-control-plane.ts +205 -0
  68. package/src/testing/index.ts +6 -0
  69. package/src/testing/loopback-supervisor-connection.ts +71 -0
  70. package/src/testing/scripted-provider.ts +64 -0
  71. package/src/worker-runtime-client/command-pump.ts +132 -0
  72. package/src/worker-runtime-client/connection-attempt.ts +340 -0
  73. package/src/worker-runtime-client/control-authority-signer.ts +100 -0
  74. package/src/worker-runtime-client/e2b-supervisor-connection.ts +102 -0
  75. package/src/worker-runtime-client/frame-processor.ts +178 -0
  76. package/src/worker-runtime-client/index.ts +27 -0
  77. package/src/worker-runtime-client/lease-reconciler.ts +14 -0
  78. package/src/worker-runtime-client/ports.ts +137 -0
  79. package/src/worker-runtime-client/postgres-notification-listener.ts +91 -0
  80. package/src/worker-runtime-client/rpc-dispatcher.ts +27 -0
  81. package/src/worker-runtime-client/rpc-request-manager.ts +141 -0
  82. package/src/worker-runtime-client/sandbox-connection-runtime.ts +300 -0
  83. package/src/worker-runtime-client/token-crypto.ts +46 -0
@@ -0,0 +1,311 @@
1
+ /* eslint-disable style/indent, style/quotes, style/semi, style/quote-props */
2
+ // This file is generated by scripts/generate-codex-protocol.ts. Do not edit manually.
3
+ // Upstream Codex protocol ref: 25af12f7e61572b0bc18ddb1008be543b91519b0
4
+
5
+ export const v1 = {
6
+ "InitializeParams": "V1InitializeParams",
7
+ "InitializeResponse": "V1InitializeResponse",
8
+ } as const;
9
+
10
+ export const v2 = {
11
+ "AccountLoginCompletedNotification": "V2AccountLoginCompletedNotification",
12
+ "AccountRateLimitsUpdatedNotification": "V2AccountRateLimitsUpdatedNotification",
13
+ "AccountUpdatedNotification": "V2AccountUpdatedNotification",
14
+ "AgentMessageDeltaNotification": "V2AgentMessageDeltaNotification",
15
+ "AppListUpdatedNotification": "V2AppListUpdatedNotification",
16
+ "AppsInstalledParams": "V2AppsInstalledParams",
17
+ "AppsInstalledResponse": "V2AppsInstalledResponse",
18
+ "AppsListParams": "V2AppsListParams",
19
+ "AppsListResponse": "V2AppsListResponse",
20
+ "AppsReadParams": "V2AppsReadParams",
21
+ "AppsReadResponse": "V2AppsReadResponse",
22
+ "CancelLoginAccountParams": "V2CancelLoginAccountParams",
23
+ "CancelLoginAccountResponse": "V2CancelLoginAccountResponse",
24
+ "CollaborationModeListParams": "V2CollaborationModeListParams",
25
+ "CollaborationModeListResponse": "V2CollaborationModeListResponse",
26
+ "CommandExecOutputDeltaNotification": "V2CommandExecOutputDeltaNotification",
27
+ "CommandExecParams": "V2CommandExecParams",
28
+ "CommandExecResizeParams": "V2CommandExecResizeParams",
29
+ "CommandExecResizeResponse": "V2CommandExecResizeResponse",
30
+ "CommandExecResponse": "V2CommandExecResponse",
31
+ "CommandExecTerminateParams": "V2CommandExecTerminateParams",
32
+ "CommandExecTerminateResponse": "V2CommandExecTerminateResponse",
33
+ "CommandExecutionOutputDeltaNotification": "V2CommandExecutionOutputDeltaNotification",
34
+ "CommandExecWriteParams": "V2CommandExecWriteParams",
35
+ "CommandExecWriteResponse": "V2CommandExecWriteResponse",
36
+ "ConfigBatchWriteParams": "V2ConfigBatchWriteParams",
37
+ "ConfigReadParams": "V2ConfigReadParams",
38
+ "ConfigReadResponse": "V2ConfigReadResponse",
39
+ "ConfigRequirementsReadResponse": "V2ConfigRequirementsReadResponse",
40
+ "ConfigValueWriteParams": "V2ConfigValueWriteParams",
41
+ "ConfigWarningNotification": "V2ConfigWarningNotification",
42
+ "ConfigWriteResponse": "V2ConfigWriteResponse",
43
+ "ConsumeAccountRateLimitResetCreditParams": "V2ConsumeAccountRateLimitResetCreditParams",
44
+ "ConsumeAccountRateLimitResetCreditResponse": "V2ConsumeAccountRateLimitResetCreditResponse",
45
+ "ContextCompactedNotification": "V2ContextCompactedNotification",
46
+ "DeprecationNoticeNotification": "V2DeprecationNoticeNotification",
47
+ "EnvironmentAddParams": "V2EnvironmentAddParams",
48
+ "EnvironmentAddResponse": "V2EnvironmentAddResponse",
49
+ "EnvironmentConnectionNotification": "V2EnvironmentConnectionNotification",
50
+ "EnvironmentInfoParams": "V2EnvironmentInfoParams",
51
+ "EnvironmentInfoResponse": "V2EnvironmentInfoResponse",
52
+ "EnvironmentStatusParams": "V2EnvironmentStatusParams",
53
+ "EnvironmentStatusResponse": "V2EnvironmentStatusResponse",
54
+ "ErrorNotification": "V2ErrorNotification",
55
+ "ExperimentalFeatureEnablementSetParams": "V2ExperimentalFeatureEnablementSetParams",
56
+ "ExperimentalFeatureEnablementSetResponse": "V2ExperimentalFeatureEnablementSetResponse",
57
+ "ExperimentalFeatureListParams": "V2ExperimentalFeatureListParams",
58
+ "ExperimentalFeatureListResponse": "V2ExperimentalFeatureListResponse",
59
+ "ExternalAgentConfigDetectParams": "V2ExternalAgentConfigDetectParams",
60
+ "ExternalAgentConfigDetectResponse": "V2ExternalAgentConfigDetectResponse",
61
+ "ExternalAgentConfigImportCompletedNotification": "V2ExternalAgentConfigImportCompletedNotification",
62
+ "ExternalAgentConfigImportHistoriesReadResponse": "V2ExternalAgentConfigImportHistoriesReadResponse",
63
+ "ExternalAgentConfigImportParams": "V2ExternalAgentConfigImportParams",
64
+ "ExternalAgentConfigImportProgressNotification": "V2ExternalAgentConfigImportProgressNotification",
65
+ "ExternalAgentConfigImportResponse": "V2ExternalAgentConfigImportResponse",
66
+ "FeedbackUploadParams": "V2FeedbackUploadParams",
67
+ "FeedbackUploadResponse": "V2FeedbackUploadResponse",
68
+ "FileChangeOutputDeltaNotification": "V2FileChangeOutputDeltaNotification",
69
+ "FileChangePatchUpdatedNotification": "V2FileChangePatchUpdatedNotification",
70
+ "FsChangedNotification": "V2FsChangedNotification",
71
+ "FsCopyParams": "V2FsCopyParams",
72
+ "FsCopyResponse": "V2FsCopyResponse",
73
+ "FsCreateDirectoryParams": "V2FsCreateDirectoryParams",
74
+ "FsCreateDirectoryResponse": "V2FsCreateDirectoryResponse",
75
+ "FsGetMetadataParams": "V2FsGetMetadataParams",
76
+ "FsGetMetadataResponse": "V2FsGetMetadataResponse",
77
+ "FsReadDirectoryParams": "V2FsReadDirectoryParams",
78
+ "FsReadDirectoryResponse": "V2FsReadDirectoryResponse",
79
+ "FsReadFileParams": "V2FsReadFileParams",
80
+ "FsReadFileResponse": "V2FsReadFileResponse",
81
+ "FsRemoveParams": "V2FsRemoveParams",
82
+ "FsRemoveResponse": "V2FsRemoveResponse",
83
+ "FsUnwatchParams": "V2FsUnwatchParams",
84
+ "FsUnwatchResponse": "V2FsUnwatchResponse",
85
+ "FsWatchParams": "V2FsWatchParams",
86
+ "FsWatchResponse": "V2FsWatchResponse",
87
+ "FsWriteFileParams": "V2FsWriteFileParams",
88
+ "FsWriteFileResponse": "V2FsWriteFileResponse",
89
+ "GetAccountParams": "V2GetAccountParams",
90
+ "GetAccountRateLimitsResponse": "V2GetAccountRateLimitsResponse",
91
+ "GetAccountResponse": "V2GetAccountResponse",
92
+ "GetAccountTokenUsageResponse": "V2GetAccountTokenUsageResponse",
93
+ "GetWorkspaceMessagesResponse": "V2GetWorkspaceMessagesResponse",
94
+ "GuardianWarningNotification": "V2GuardianWarningNotification",
95
+ "HookCompletedNotification": "V2HookCompletedNotification",
96
+ "HooksListParams": "V2HooksListParams",
97
+ "HooksListResponse": "V2HooksListResponse",
98
+ "HookStartedNotification": "V2HookStartedNotification",
99
+ "ItemCompletedNotification": "V2ItemCompletedNotification",
100
+ "ItemGuardianApprovalReviewCompletedNotification": "V2ItemGuardianApprovalReviewCompletedNotification",
101
+ "ItemGuardianApprovalReviewStartedNotification": "V2ItemGuardianApprovalReviewStartedNotification",
102
+ "ItemStartedNotification": "V2ItemStartedNotification",
103
+ "ListMcpServerStatusParams": "V2ListMcpServerStatusParams",
104
+ "ListMcpServerStatusResponse": "V2ListMcpServerStatusResponse",
105
+ "LoginAccountParams": "V2LoginAccountParams",
106
+ "LoginAccountResponse": "V2LoginAccountResponse",
107
+ "LogoutAccountResponse": "V2LogoutAccountResponse",
108
+ "MarketplaceAddParams": "V2MarketplaceAddParams",
109
+ "MarketplaceAddResponse": "V2MarketplaceAddResponse",
110
+ "MarketplaceRemoveParams": "V2MarketplaceRemoveParams",
111
+ "MarketplaceRemoveResponse": "V2MarketplaceRemoveResponse",
112
+ "MarketplaceUpgradeParams": "V2MarketplaceUpgradeParams",
113
+ "MarketplaceUpgradeResponse": "V2MarketplaceUpgradeResponse",
114
+ "McpResourceReadParams": "V2McpResourceReadParams",
115
+ "McpResourceReadResponse": "V2McpResourceReadResponse",
116
+ "McpServerOauthLoginCompletedNotification": "V2McpServerOauthLoginCompletedNotification",
117
+ "McpServerOauthLoginParams": "V2McpServerOauthLoginParams",
118
+ "McpServerOauthLoginResponse": "V2McpServerOauthLoginResponse",
119
+ "McpServerRefreshResponse": "V2McpServerRefreshResponse",
120
+ "McpServerStatusUpdatedNotification": "V2McpServerStatusUpdatedNotification",
121
+ "McpServerToolCallParams": "V2McpServerToolCallParams",
122
+ "McpServerToolCallResponse": "V2McpServerToolCallResponse",
123
+ "McpToolCallProgressNotification": "V2McpToolCallProgressNotification",
124
+ "MemoryResetResponse": "V2MemoryResetResponse",
125
+ "MockExperimentalMethodParams": "V2MockExperimentalMethodParams",
126
+ "MockExperimentalMethodResponse": "V2MockExperimentalMethodResponse",
127
+ "ModelListParams": "V2ModelListParams",
128
+ "ModelListResponse": "V2ModelListResponse",
129
+ "ModelProviderCapabilitiesReadParams": "V2ModelProviderCapabilitiesReadParams",
130
+ "ModelProviderCapabilitiesReadResponse": "V2ModelProviderCapabilitiesReadResponse",
131
+ "ModelReroutedNotification": "V2ModelReroutedNotification",
132
+ "ModelSafetyBufferingUpdatedNotification": "V2ModelSafetyBufferingUpdatedNotification",
133
+ "ModelVerificationNotification": "V2ModelVerificationNotification",
134
+ "NullableRemoteControlDisableParams": "V2NullableRemoteControlDisableParams",
135
+ "NullableRemoteControlEnableParams": "V2NullableRemoteControlEnableParams",
136
+ "PermissionProfileListParams": "V2PermissionProfileListParams",
137
+ "PermissionProfileListResponse": "V2PermissionProfileListResponse",
138
+ "PlanDeltaNotification": "V2PlanDeltaNotification",
139
+ "PluginInstalledParams": "V2PluginInstalledParams",
140
+ "PluginInstalledResponse": "V2PluginInstalledResponse",
141
+ "PluginInstallParams": "V2PluginInstallParams",
142
+ "PluginInstallResponse": "V2PluginInstallResponse",
143
+ "PluginListParams": "V2PluginListParams",
144
+ "PluginListResponse": "V2PluginListResponse",
145
+ "PluginReadParams": "V2PluginReadParams",
146
+ "PluginReadResponse": "V2PluginReadResponse",
147
+ "PluginShareCheckoutParams": "V2PluginShareCheckoutParams",
148
+ "PluginShareCheckoutResponse": "V2PluginShareCheckoutResponse",
149
+ "PluginShareDeleteParams": "V2PluginShareDeleteParams",
150
+ "PluginShareDeleteResponse": "V2PluginShareDeleteResponse",
151
+ "PluginShareListParams": "V2PluginShareListParams",
152
+ "PluginShareListResponse": "V2PluginShareListResponse",
153
+ "PluginShareSaveParams": "V2PluginShareSaveParams",
154
+ "PluginShareSaveResponse": "V2PluginShareSaveResponse",
155
+ "PluginShareUpdateTargetsParams": "V2PluginShareUpdateTargetsParams",
156
+ "PluginShareUpdateTargetsResponse": "V2PluginShareUpdateTargetsResponse",
157
+ "PluginSkillReadParams": "V2PluginSkillReadParams",
158
+ "PluginSkillReadResponse": "V2PluginSkillReadResponse",
159
+ "PluginUninstallParams": "V2PluginUninstallParams",
160
+ "PluginUninstallResponse": "V2PluginUninstallResponse",
161
+ "ProcessExitedNotification": "V2ProcessExitedNotification",
162
+ "ProcessKillParams": "V2ProcessKillParams",
163
+ "ProcessKillResponse": "V2ProcessKillResponse",
164
+ "ProcessOutputDeltaNotification": "V2ProcessOutputDeltaNotification",
165
+ "ProcessResizePtyParams": "V2ProcessResizePtyParams",
166
+ "ProcessResizePtyResponse": "V2ProcessResizePtyResponse",
167
+ "ProcessSpawnParams": "V2ProcessSpawnParams",
168
+ "ProcessSpawnResponse": "V2ProcessSpawnResponse",
169
+ "ProcessWriteStdinParams": "V2ProcessWriteStdinParams",
170
+ "ProcessWriteStdinResponse": "V2ProcessWriteStdinResponse",
171
+ "RawResponseCompletedNotification": "V2RawResponseCompletedNotification",
172
+ "RawResponseItemCompletedNotification": "V2RawResponseItemCompletedNotification",
173
+ "ReasoningSummaryPartAddedNotification": "V2ReasoningSummaryPartAddedNotification",
174
+ "ReasoningSummaryTextDeltaNotification": "V2ReasoningSummaryTextDeltaNotification",
175
+ "ReasoningTextDeltaNotification": "V2ReasoningTextDeltaNotification",
176
+ "RemoteControlClientsListParams": "V2RemoteControlClientsListParams",
177
+ "RemoteControlClientsListResponse": "V2RemoteControlClientsListResponse",
178
+ "RemoteControlClientsRevokeParams": "V2RemoteControlClientsRevokeParams",
179
+ "RemoteControlClientsRevokeResponse": "V2RemoteControlClientsRevokeResponse",
180
+ "RemoteControlDisableResponse": "V2RemoteControlDisableResponse",
181
+ "RemoteControlEnableResponse": "V2RemoteControlEnableResponse",
182
+ "RemoteControlPairingStartParams": "V2RemoteControlPairingStartParams",
183
+ "RemoteControlPairingStartResponse": "V2RemoteControlPairingStartResponse",
184
+ "RemoteControlPairingStatusParams": "V2RemoteControlPairingStatusParams",
185
+ "RemoteControlPairingStatusResponse": "V2RemoteControlPairingStatusResponse",
186
+ "RemoteControlStatusChangedNotification": "V2RemoteControlStatusChangedNotification",
187
+ "RemoteControlStatusReadResponse": "V2RemoteControlStatusReadResponse",
188
+ "ReviewStartParams": "V2ReviewStartParams",
189
+ "ReviewStartResponse": "V2ReviewStartResponse",
190
+ "SendAddCreditsNudgeEmailParams": "V2SendAddCreditsNudgeEmailParams",
191
+ "SendAddCreditsNudgeEmailResponse": "V2SendAddCreditsNudgeEmailResponse",
192
+ "ServerRequestResolvedNotification": "V2ServerRequestResolvedNotification",
193
+ "SkillsChangedNotification": "V2SkillsChangedNotification",
194
+ "SkillsConfigWriteParams": "V2SkillsConfigWriteParams",
195
+ "SkillsConfigWriteResponse": "V2SkillsConfigWriteResponse",
196
+ "SkillsExtraRootsSetParams": "V2SkillsExtraRootsSetParams",
197
+ "SkillsExtraRootsSetResponse": "V2SkillsExtraRootsSetResponse",
198
+ "SkillsListParams": "V2SkillsListParams",
199
+ "SkillsListResponse": "V2SkillsListResponse",
200
+ "TerminalInteractionNotification": "V2TerminalInteractionNotification",
201
+ "ThreadApproveGuardianDeniedActionParams": "V2ThreadApproveGuardianDeniedActionParams",
202
+ "ThreadApproveGuardianDeniedActionResponse": "V2ThreadApproveGuardianDeniedActionResponse",
203
+ "ThreadArchivedNotification": "V2ThreadArchivedNotification",
204
+ "ThreadArchiveParams": "V2ThreadArchiveParams",
205
+ "ThreadArchiveResponse": "V2ThreadArchiveResponse",
206
+ "ThreadBackgroundTerminalsCleanParams": "V2ThreadBackgroundTerminalsCleanParams",
207
+ "ThreadBackgroundTerminalsCleanResponse": "V2ThreadBackgroundTerminalsCleanResponse",
208
+ "ThreadBackgroundTerminalsListParams": "V2ThreadBackgroundTerminalsListParams",
209
+ "ThreadBackgroundTerminalsListResponse": "V2ThreadBackgroundTerminalsListResponse",
210
+ "ThreadBackgroundTerminalsTerminateParams": "V2ThreadBackgroundTerminalsTerminateParams",
211
+ "ThreadBackgroundTerminalsTerminateResponse": "V2ThreadBackgroundTerminalsTerminateResponse",
212
+ "ThreadClosedNotification": "V2ThreadClosedNotification",
213
+ "ThreadCompactStartParams": "V2ThreadCompactStartParams",
214
+ "ThreadCompactStartResponse": "V2ThreadCompactStartResponse",
215
+ "ThreadDecrementElicitationParams": "V2ThreadDecrementElicitationParams",
216
+ "ThreadDecrementElicitationResponse": "V2ThreadDecrementElicitationResponse",
217
+ "ThreadDeletedNotification": "V2ThreadDeletedNotification",
218
+ "ThreadDeleteParams": "V2ThreadDeleteParams",
219
+ "ThreadDeleteResponse": "V2ThreadDeleteResponse",
220
+ "ThreadForkParams": "V2ThreadForkParams",
221
+ "ThreadForkResponse": "V2ThreadForkResponse",
222
+ "ThreadGoalClearedNotification": "V2ThreadGoalClearedNotification",
223
+ "ThreadGoalClearParams": "V2ThreadGoalClearParams",
224
+ "ThreadGoalClearResponse": "V2ThreadGoalClearResponse",
225
+ "ThreadGoalGetParams": "V2ThreadGoalGetParams",
226
+ "ThreadGoalGetResponse": "V2ThreadGoalGetResponse",
227
+ "ThreadGoalSetParams": "V2ThreadGoalSetParams",
228
+ "ThreadGoalSetResponse": "V2ThreadGoalSetResponse",
229
+ "ThreadGoalUpdatedNotification": "V2ThreadGoalUpdatedNotification",
230
+ "ThreadIncrementElicitationParams": "V2ThreadIncrementElicitationParams",
231
+ "ThreadIncrementElicitationResponse": "V2ThreadIncrementElicitationResponse",
232
+ "ThreadInjectItemsParams": "V2ThreadInjectItemsParams",
233
+ "ThreadInjectItemsResponse": "V2ThreadInjectItemsResponse",
234
+ "ThreadItemsListParams": "V2ThreadItemsListParams",
235
+ "ThreadItemsListResponse": "V2ThreadItemsListResponse",
236
+ "ThreadListParams": "V2ThreadListParams",
237
+ "ThreadListResponse": "V2ThreadListResponse",
238
+ "ThreadLoadedListParams": "V2ThreadLoadedListParams",
239
+ "ThreadLoadedListResponse": "V2ThreadLoadedListResponse",
240
+ "ThreadMemoryModeSetParams": "V2ThreadMemoryModeSetParams",
241
+ "ThreadMemoryModeSetResponse": "V2ThreadMemoryModeSetResponse",
242
+ "ThreadMetadataUpdateParams": "V2ThreadMetadataUpdateParams",
243
+ "ThreadMetadataUpdateResponse": "V2ThreadMetadataUpdateResponse",
244
+ "ThreadNameUpdatedNotification": "V2ThreadNameUpdatedNotification",
245
+ "ThreadReadParams": "V2ThreadReadParams",
246
+ "ThreadReadResponse": "V2ThreadReadResponse",
247
+ "ThreadRealtimeAppendAudioParams": "V2ThreadRealtimeAppendAudioParams",
248
+ "ThreadRealtimeAppendAudioResponse": "V2ThreadRealtimeAppendAudioResponse",
249
+ "ThreadRealtimeAppendSpeechParams": "V2ThreadRealtimeAppendSpeechParams",
250
+ "ThreadRealtimeAppendSpeechResponse": "V2ThreadRealtimeAppendSpeechResponse",
251
+ "ThreadRealtimeAppendTextParams": "V2ThreadRealtimeAppendTextParams",
252
+ "ThreadRealtimeAppendTextResponse": "V2ThreadRealtimeAppendTextResponse",
253
+ "ThreadRealtimeClosedNotification": "V2ThreadRealtimeClosedNotification",
254
+ "ThreadRealtimeErrorNotification": "V2ThreadRealtimeErrorNotification",
255
+ "ThreadRealtimeItemAddedNotification": "V2ThreadRealtimeItemAddedNotification",
256
+ "ThreadRealtimeListVoicesParams": "V2ThreadRealtimeListVoicesParams",
257
+ "ThreadRealtimeListVoicesResponse": "V2ThreadRealtimeListVoicesResponse",
258
+ "ThreadRealtimeOutputAudioDeltaNotification": "V2ThreadRealtimeOutputAudioDeltaNotification",
259
+ "ThreadRealtimeSdpNotification": "V2ThreadRealtimeSdpNotification",
260
+ "ThreadRealtimeStartedNotification": "V2ThreadRealtimeStartedNotification",
261
+ "ThreadRealtimeStartParams": "V2ThreadRealtimeStartParams",
262
+ "ThreadRealtimeStartResponse": "V2ThreadRealtimeStartResponse",
263
+ "ThreadRealtimeStopParams": "V2ThreadRealtimeStopParams",
264
+ "ThreadRealtimeStopResponse": "V2ThreadRealtimeStopResponse",
265
+ "ThreadRealtimeTranscriptDeltaNotification": "V2ThreadRealtimeTranscriptDeltaNotification",
266
+ "ThreadRealtimeTranscriptDoneNotification": "V2ThreadRealtimeTranscriptDoneNotification",
267
+ "ThreadResumeParams": "V2ThreadResumeParams",
268
+ "ThreadResumeResponse": "V2ThreadResumeResponse",
269
+ "ThreadRollbackParams": "V2ThreadRollbackParams",
270
+ "ThreadRollbackResponse": "V2ThreadRollbackResponse",
271
+ "ThreadSearchOccurrencesParams": "V2ThreadSearchOccurrencesParams",
272
+ "ThreadSearchOccurrencesResponse": "V2ThreadSearchOccurrencesResponse",
273
+ "ThreadSearchParams": "V2ThreadSearchParams",
274
+ "ThreadSearchResponse": "V2ThreadSearchResponse",
275
+ "ThreadSetNameParams": "V2ThreadSetNameParams",
276
+ "ThreadSetNameResponse": "V2ThreadSetNameResponse",
277
+ "ThreadSettingsUpdatedNotification": "V2ThreadSettingsUpdatedNotification",
278
+ "ThreadSettingsUpdateParams": "V2ThreadSettingsUpdateParams",
279
+ "ThreadSettingsUpdateResponse": "V2ThreadSettingsUpdateResponse",
280
+ "ThreadShellCommandParams": "V2ThreadShellCommandParams",
281
+ "ThreadShellCommandResponse": "V2ThreadShellCommandResponse",
282
+ "ThreadStartedNotification": "V2ThreadStartedNotification",
283
+ "ThreadStartParams": "V2ThreadStartParams",
284
+ "ThreadStartResponse": "V2ThreadStartResponse",
285
+ "ThreadStatusChangedNotification": "V2ThreadStatusChangedNotification",
286
+ "ThreadTokenUsageUpdatedNotification": "V2ThreadTokenUsageUpdatedNotification",
287
+ "ThreadTurnsListParams": "V2ThreadTurnsListParams",
288
+ "ThreadTurnsListResponse": "V2ThreadTurnsListResponse",
289
+ "ThreadUnarchivedNotification": "V2ThreadUnarchivedNotification",
290
+ "ThreadUnarchiveParams": "V2ThreadUnarchiveParams",
291
+ "ThreadUnarchiveResponse": "V2ThreadUnarchiveResponse",
292
+ "ThreadUnsubscribeParams": "V2ThreadUnsubscribeParams",
293
+ "ThreadUnsubscribeResponse": "V2ThreadUnsubscribeResponse",
294
+ "TurnCompletedNotification": "V2TurnCompletedNotification",
295
+ "TurnDiffUpdatedNotification": "V2TurnDiffUpdatedNotification",
296
+ "TurnInterruptParams": "V2TurnInterruptParams",
297
+ "TurnInterruptResponse": "V2TurnInterruptResponse",
298
+ "TurnModerationMetadataNotification": "V2TurnModerationMetadataNotification",
299
+ "TurnPlanUpdatedNotification": "V2TurnPlanUpdatedNotification",
300
+ "TurnStartedNotification": "V2TurnStartedNotification",
301
+ "TurnStartParams": "V2TurnStartParams",
302
+ "TurnStartResponse": "V2TurnStartResponse",
303
+ "TurnSteerParams": "V2TurnSteerParams",
304
+ "TurnSteerResponse": "V2TurnSteerResponse",
305
+ "WarningNotification": "V2WarningNotification",
306
+ "WindowsSandboxReadinessResponse": "V2WindowsSandboxReadinessResponse",
307
+ "WindowsSandboxSetupCompletedNotification": "V2WindowsSandboxSetupCompletedNotification",
308
+ "WindowsSandboxSetupStartParams": "V2WindowsSandboxSetupStartParams",
309
+ "WindowsSandboxSetupStartResponse": "V2WindowsSandboxSetupStartResponse",
310
+ "WindowsWorldWritableWarningNotification": "V2WindowsWorldWritableWarningNotification",
311
+ } as const;