@mirasoth/soothe-client 0.4.1 → 0.5.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.
- package/dist/{chunk-YYUVHZ3W.js → chunk-A6WGUBQE.js} +22 -16
- package/dist/{chunk-YYUVHZ3W.js.map → chunk-A6WGUBQE.js.map} +1 -1
- package/dist/client-UEBVV6HI.js +7 -0
- package/dist/index.cjs +32 -23
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +12 -9
- package/dist/index.d.ts +12 -9
- package/dist/index.js +23 -17
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/client-SOJZSF7C.js +0 -7
- /package/dist/{client-SOJZSF7C.js.map → client-UEBVV6HI.js.map} +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -167,7 +167,7 @@ declare const PROTO_VERSION = "1";
|
|
|
167
167
|
/** Default client capabilities declared in the connection_init handshake. */
|
|
168
168
|
declare const DEFAULT_CLIENT_CAPABILITIES: string[];
|
|
169
169
|
/** Client version reported in the connection_init handshake. */
|
|
170
|
-
declare const CLIENT_VERSION = "0.
|
|
170
|
+
declare const CLIENT_VERSION = "0.5.0";
|
|
171
171
|
type MessageType = "connection_init" | "connection_ack" | "request" | "response" | "notification" | "subscribe" | "next" | "error" | "complete" | "unsubscribe" | "ping" | "pong" | "receipt_response" | "disconnect" | "status";
|
|
172
172
|
/** Method names carried in the envelope `method` field. */
|
|
173
173
|
type MethodName = "loop_list" | "loop_get" | "loop_tree" | "loop_prune" | "loop_delete" | "loop_new" | "loop_reattach" | "loop_detach" | "loop_input" | "loop_messages" | "loop_state_get" | "loop_state_update" | "loop_cards_fetch" | "loop_history_fetch" | "loop_events" | "autopilot_events" | "job_create" | "job_status" | "job_pause" | "job_resume" | "job_cancel" | "job_dag" | "job_guidance" | "autopilot_status" | "autopilot_submit" | "autopilot_list_goals" | "autopilot_get_goal" | "autopilot_cancel_goal" | "autopilot_cancel_all" | "autopilot_wake" | "autopilot_dream" | "autopilot_resume" | "autopilot_list_jobs" | "autopilot_get_job" | "daemon_status" | "daemon_shutdown" | "config_get" | "config_reload" | "skills_list" | "invoke_skill" | "models_list" | "mcp_status" | "auth" | "auth_refresh" | "slash_command" | "rpc_command" | "delivery_ack" | "cron_add" | "cron_list" | "cron_show" | "cron_cancel" | "disconnect";
|
|
@@ -389,13 +389,16 @@ declare function newLoopSubscribeMessage(loopID: string, verbosity: string, stre
|
|
|
389
389
|
*/
|
|
390
390
|
|
|
391
391
|
declare const EventPlanCreated = "soothe.cognition.plan.created";
|
|
392
|
-
declare const
|
|
393
|
-
declare const
|
|
394
|
-
declare const
|
|
395
|
-
declare const
|
|
396
|
-
declare const
|
|
397
|
-
declare const
|
|
398
|
-
declare const
|
|
392
|
+
declare const EventExplorerStarted = "soothe.subagent.explorer.started";
|
|
393
|
+
declare const EventExplorerMilestone = "soothe.subagent.explorer.milestone";
|
|
394
|
+
declare const EventExplorerStepCompleted = "soothe.subagent.explorer.step.completed";
|
|
395
|
+
declare const EventExplorerCompleted = "soothe.subagent.explorer.completed";
|
|
396
|
+
declare const EventDeepResearchStarted = "soothe.subagent.deep_research.started";
|
|
397
|
+
declare const EventDeepResearchProgress = "soothe.subagent.deep_research.progress";
|
|
398
|
+
declare const EventDeepResearchStepCompleted = "soothe.subagent.deep_research.step.completed";
|
|
399
|
+
declare const EventDeepResearchGatherSummary = "soothe.subagent.deep_research.gather.summary";
|
|
400
|
+
declare const EventDeepResearchCrawlSummary = "soothe.subagent.deep_research.crawl.summary";
|
|
401
|
+
declare const EventDeepResearchCompleted = "soothe.subagent.deep_research.completed";
|
|
399
402
|
declare const EventReplayComplete = "replay_complete";
|
|
400
403
|
declare const EventLoopReattachedWire = "loop_reattached";
|
|
401
404
|
declare const EventCardReplayBegin = "card.replay_begin";
|
|
@@ -1543,4 +1546,4 @@ declare class DaemonSession {
|
|
|
1543
1546
|
}): AsyncGenerator<TurnChunk>;
|
|
1544
1547
|
}
|
|
1545
1548
|
|
|
1546
|
-
export { type Attachment, type BaseEnvelope, CLIENT_VERSION, type ChatEventResult, ChatEventTerminal, type ClassifierConfig, Client, CommandClient, type CompactImageOptions, type CompleteEnvelope, type Config, type ConnectionAckEnvelope, ConnectionError, type ConnectionInitEnvelope, ConnectionPool, DEFAULT_CLIENT_CAPABILITIES, DEFAULT_DELIVERABLE_PHASES, DEFAULT_POST_IDLE_DRAIN_MS, DEFAULT_THINKING_STEP_EVENTS, DaemonError, DaemonSession, type DaemonSessionOptions, type DecodedMessage, DisconnectCause, type DisconnectEnvelope, ErrIdleTimeout, ErrPoolExhausted, ErrQueryBusy, ErrQueryTimeout, type ErrorEnvelope, EventAutopilotGoalCompleted, EventAutopilotGoalCreated, EventAutopilotGoalProgress, EventAutopilotGoalStatus, EventAutopilotWorkerAssigned, EventAutopilotWorkerUnassigned, EventCardCreated, EventCardReplayBegin, EventCardReplayEnd, EventClassifier,
|
|
1549
|
+
export { type Attachment, type BaseEnvelope, CLIENT_VERSION, type ChatEventResult, ChatEventTerminal, type ClassifierConfig, Client, CommandClient, type CompactImageOptions, type CompleteEnvelope, type Config, type ConnectionAckEnvelope, ConnectionError, type ConnectionInitEnvelope, ConnectionPool, DEFAULT_CLIENT_CAPABILITIES, DEFAULT_DELIVERABLE_PHASES, DEFAULT_POST_IDLE_DRAIN_MS, DEFAULT_THINKING_STEP_EVENTS, DaemonError, DaemonSession, type DaemonSessionOptions, type DecodedMessage, DisconnectCause, type DisconnectEnvelope, ErrIdleTimeout, ErrPoolExhausted, ErrQueryBusy, ErrQueryTimeout, type ErrorEnvelope, EventAutopilotGoalCompleted, EventAutopilotGoalCreated, EventAutopilotGoalProgress, EventAutopilotGoalStatus, EventAutopilotWorkerAssigned, EventAutopilotWorkerUnassigned, EventCardCreated, EventCardReplayBegin, EventCardReplayEnd, EventClassifier, EventDeepResearchCompleted, EventDeepResearchCrawlSummary, EventDeepResearchGatherSummary, EventDeepResearchProgress, EventDeepResearchStarted, EventDeepResearchStepCompleted, EventExplorerCompleted, EventExplorerMilestone, EventExplorerStarted, EventExplorerStepCompleted, EventFinalReport, EventGeneralFailed, EventLoopReattachedWire, EventMessageReceived, EventMessageSent, EventPlanCreated, EventReplayComplete, EventStrangeLoopCompleted, EventStrangeLoopContextCompacted, EventStrangeLoopPlanDecision, EventStrangeLoopReasoned, EventStrangeLoopStarted, EventStrangeLoopStepCompleted, EventStrangeLoopStepQueued, EventStrangeLoopStepStarted, EventStreamToolCallUpdate, EventToolCallUpdatesBatch, EventToolCompleted, EventToolError, EventToolStarted, INTENT_HINT_EMBED, INTENT_HINT_IMAGE_TO_TEXT, INTENT_HINT_OCR, INTENT_HINT_TEXT_COMPLETION, type InputOptions, type InputOpts, type IntentHint, LOOP_ASSISTANT_OUTPUT_PHASES, type LoopAssistantOutputPhase, type LoopInputIntentHint, type LoopInputParams, type LoopNewOptions, type MessageType, type MethodName, type NegotiatedCapabilities, type NextEnvelope, type NotificationEnvelope, type OnComplete, type OnError, PROTO_VERSION, type PingEnvelope, type PongEnvelope, type PoolConfig, PooledConn, QueryGate, REMOVED_INTENT_HINTS, type ReceiptResponseEnvelope, ReconnectError, type RemovedIntentHint, type RequestEnvelope, type ResponseEnvelope, SSEBroadcaster, type SSEEvent, STREAM_END, type SessionEntry, type SessionMessage, type SessionStore, StaleLoopError, type StatusFrame, StreamCloseFail, type StreamClosePolicy, StreamCloseSoftComplete, type StreamEventPayload, type SubscribeEnvelope, TimeoutError, TimeoutPolicy, type TurnChunk, type TurnConfig, TurnEventStats, TurnRunner, type UnsubscribeEnvelope, type VerbosityLevel, VerbosityTier, authenticate, bootstrapLoopSession, checkDaemonStatus, classifyEventVerbosity, compactAttachments, compactImageAttachment, connectWithRetries, connectedWebsocket, connectionInitEnvelope, decodeMessage, defaultConfig, defaultPoolConfig, disconnectCauseName, disconnectEnvelope, encodeMessage, extractSootheLoopID, extractThinkingStep, fetchConfigSection, fetchLoopCards, fetchLoopHistory, fetchLoopMessages, fetchSkillsCatalog, idleTimeoutForTurn, inboundNeedsDeliveryAck, inputMessageForLoop, isCompletionEvent, isDaemonLive, isSubagentProgressEvent, isTurnEndCustomData, isTurnProgressChunk, isValidVerbosityLevel, loadConfigFromEnv, newLoopInputMessage, newLoopNewMessage, newLoopSubscribeMessage, newRequestID, notificationEnvelope, parseNamespace, pingEnvelope, pongEnvelope, protocol1Rpc, refreshAuthToken, requestDaemonConfigReload, requestDaemonShutdown, requestEnvelope, shouldShow, splitWirePayload, subscribeEnvelope, unsubscribeEnvelope, validateLoopInputIntentHint, waitDaemonReady, waitLoopStatusWithID, waitSubscriptionConfirmed };
|
package/dist/index.d.ts
CHANGED
|
@@ -167,7 +167,7 @@ declare const PROTO_VERSION = "1";
|
|
|
167
167
|
/** Default client capabilities declared in the connection_init handshake. */
|
|
168
168
|
declare const DEFAULT_CLIENT_CAPABILITIES: string[];
|
|
169
169
|
/** Client version reported in the connection_init handshake. */
|
|
170
|
-
declare const CLIENT_VERSION = "0.
|
|
170
|
+
declare const CLIENT_VERSION = "0.5.0";
|
|
171
171
|
type MessageType = "connection_init" | "connection_ack" | "request" | "response" | "notification" | "subscribe" | "next" | "error" | "complete" | "unsubscribe" | "ping" | "pong" | "receipt_response" | "disconnect" | "status";
|
|
172
172
|
/** Method names carried in the envelope `method` field. */
|
|
173
173
|
type MethodName = "loop_list" | "loop_get" | "loop_tree" | "loop_prune" | "loop_delete" | "loop_new" | "loop_reattach" | "loop_detach" | "loop_input" | "loop_messages" | "loop_state_get" | "loop_state_update" | "loop_cards_fetch" | "loop_history_fetch" | "loop_events" | "autopilot_events" | "job_create" | "job_status" | "job_pause" | "job_resume" | "job_cancel" | "job_dag" | "job_guidance" | "autopilot_status" | "autopilot_submit" | "autopilot_list_goals" | "autopilot_get_goal" | "autopilot_cancel_goal" | "autopilot_cancel_all" | "autopilot_wake" | "autopilot_dream" | "autopilot_resume" | "autopilot_list_jobs" | "autopilot_get_job" | "daemon_status" | "daemon_shutdown" | "config_get" | "config_reload" | "skills_list" | "invoke_skill" | "models_list" | "mcp_status" | "auth" | "auth_refresh" | "slash_command" | "rpc_command" | "delivery_ack" | "cron_add" | "cron_list" | "cron_show" | "cron_cancel" | "disconnect";
|
|
@@ -389,13 +389,16 @@ declare function newLoopSubscribeMessage(loopID: string, verbosity: string, stre
|
|
|
389
389
|
*/
|
|
390
390
|
|
|
391
391
|
declare const EventPlanCreated = "soothe.cognition.plan.created";
|
|
392
|
-
declare const
|
|
393
|
-
declare const
|
|
394
|
-
declare const
|
|
395
|
-
declare const
|
|
396
|
-
declare const
|
|
397
|
-
declare const
|
|
398
|
-
declare const
|
|
392
|
+
declare const EventExplorerStarted = "soothe.subagent.explorer.started";
|
|
393
|
+
declare const EventExplorerMilestone = "soothe.subagent.explorer.milestone";
|
|
394
|
+
declare const EventExplorerStepCompleted = "soothe.subagent.explorer.step.completed";
|
|
395
|
+
declare const EventExplorerCompleted = "soothe.subagent.explorer.completed";
|
|
396
|
+
declare const EventDeepResearchStarted = "soothe.subagent.deep_research.started";
|
|
397
|
+
declare const EventDeepResearchProgress = "soothe.subagent.deep_research.progress";
|
|
398
|
+
declare const EventDeepResearchStepCompleted = "soothe.subagent.deep_research.step.completed";
|
|
399
|
+
declare const EventDeepResearchGatherSummary = "soothe.subagent.deep_research.gather.summary";
|
|
400
|
+
declare const EventDeepResearchCrawlSummary = "soothe.subagent.deep_research.crawl.summary";
|
|
401
|
+
declare const EventDeepResearchCompleted = "soothe.subagent.deep_research.completed";
|
|
399
402
|
declare const EventReplayComplete = "replay_complete";
|
|
400
403
|
declare const EventLoopReattachedWire = "loop_reattached";
|
|
401
404
|
declare const EventCardReplayBegin = "card.replay_begin";
|
|
@@ -1543,4 +1546,4 @@ declare class DaemonSession {
|
|
|
1543
1546
|
}): AsyncGenerator<TurnChunk>;
|
|
1544
1547
|
}
|
|
1545
1548
|
|
|
1546
|
-
export { type Attachment, type BaseEnvelope, CLIENT_VERSION, type ChatEventResult, ChatEventTerminal, type ClassifierConfig, Client, CommandClient, type CompactImageOptions, type CompleteEnvelope, type Config, type ConnectionAckEnvelope, ConnectionError, type ConnectionInitEnvelope, ConnectionPool, DEFAULT_CLIENT_CAPABILITIES, DEFAULT_DELIVERABLE_PHASES, DEFAULT_POST_IDLE_DRAIN_MS, DEFAULT_THINKING_STEP_EVENTS, DaemonError, DaemonSession, type DaemonSessionOptions, type DecodedMessage, DisconnectCause, type DisconnectEnvelope, ErrIdleTimeout, ErrPoolExhausted, ErrQueryBusy, ErrQueryTimeout, type ErrorEnvelope, EventAutopilotGoalCompleted, EventAutopilotGoalCreated, EventAutopilotGoalProgress, EventAutopilotGoalStatus, EventAutopilotWorkerAssigned, EventAutopilotWorkerUnassigned, EventCardCreated, EventCardReplayBegin, EventCardReplayEnd, EventClassifier,
|
|
1549
|
+
export { type Attachment, type BaseEnvelope, CLIENT_VERSION, type ChatEventResult, ChatEventTerminal, type ClassifierConfig, Client, CommandClient, type CompactImageOptions, type CompleteEnvelope, type Config, type ConnectionAckEnvelope, ConnectionError, type ConnectionInitEnvelope, ConnectionPool, DEFAULT_CLIENT_CAPABILITIES, DEFAULT_DELIVERABLE_PHASES, DEFAULT_POST_IDLE_DRAIN_MS, DEFAULT_THINKING_STEP_EVENTS, DaemonError, DaemonSession, type DaemonSessionOptions, type DecodedMessage, DisconnectCause, type DisconnectEnvelope, ErrIdleTimeout, ErrPoolExhausted, ErrQueryBusy, ErrQueryTimeout, type ErrorEnvelope, EventAutopilotGoalCompleted, EventAutopilotGoalCreated, EventAutopilotGoalProgress, EventAutopilotGoalStatus, EventAutopilotWorkerAssigned, EventAutopilotWorkerUnassigned, EventCardCreated, EventCardReplayBegin, EventCardReplayEnd, EventClassifier, EventDeepResearchCompleted, EventDeepResearchCrawlSummary, EventDeepResearchGatherSummary, EventDeepResearchProgress, EventDeepResearchStarted, EventDeepResearchStepCompleted, EventExplorerCompleted, EventExplorerMilestone, EventExplorerStarted, EventExplorerStepCompleted, EventFinalReport, EventGeneralFailed, EventLoopReattachedWire, EventMessageReceived, EventMessageSent, EventPlanCreated, EventReplayComplete, EventStrangeLoopCompleted, EventStrangeLoopContextCompacted, EventStrangeLoopPlanDecision, EventStrangeLoopReasoned, EventStrangeLoopStarted, EventStrangeLoopStepCompleted, EventStrangeLoopStepQueued, EventStrangeLoopStepStarted, EventStreamToolCallUpdate, EventToolCallUpdatesBatch, EventToolCompleted, EventToolError, EventToolStarted, INTENT_HINT_EMBED, INTENT_HINT_IMAGE_TO_TEXT, INTENT_HINT_OCR, INTENT_HINT_TEXT_COMPLETION, type InputOptions, type InputOpts, type IntentHint, LOOP_ASSISTANT_OUTPUT_PHASES, type LoopAssistantOutputPhase, type LoopInputIntentHint, type LoopInputParams, type LoopNewOptions, type MessageType, type MethodName, type NegotiatedCapabilities, type NextEnvelope, type NotificationEnvelope, type OnComplete, type OnError, PROTO_VERSION, type PingEnvelope, type PongEnvelope, type PoolConfig, PooledConn, QueryGate, REMOVED_INTENT_HINTS, type ReceiptResponseEnvelope, ReconnectError, type RemovedIntentHint, type RequestEnvelope, type ResponseEnvelope, SSEBroadcaster, type SSEEvent, STREAM_END, type SessionEntry, type SessionMessage, type SessionStore, StaleLoopError, type StatusFrame, StreamCloseFail, type StreamClosePolicy, StreamCloseSoftComplete, type StreamEventPayload, type SubscribeEnvelope, TimeoutError, TimeoutPolicy, type TurnChunk, type TurnConfig, TurnEventStats, TurnRunner, type UnsubscribeEnvelope, type VerbosityLevel, VerbosityTier, authenticate, bootstrapLoopSession, checkDaemonStatus, classifyEventVerbosity, compactAttachments, compactImageAttachment, connectWithRetries, connectedWebsocket, connectionInitEnvelope, decodeMessage, defaultConfig, defaultPoolConfig, disconnectCauseName, disconnectEnvelope, encodeMessage, extractSootheLoopID, extractThinkingStep, fetchConfigSection, fetchLoopCards, fetchLoopHistory, fetchLoopMessages, fetchSkillsCatalog, idleTimeoutForTurn, inboundNeedsDeliveryAck, inputMessageForLoop, isCompletionEvent, isDaemonLive, isSubagentProgressEvent, isTurnEndCustomData, isTurnProgressChunk, isValidVerbosityLevel, loadConfigFromEnv, newLoopInputMessage, newLoopNewMessage, newLoopSubscribeMessage, newRequestID, notificationEnvelope, parseNamespace, pingEnvelope, pongEnvelope, protocol1Rpc, refreshAuthToken, requestDaemonConfigReload, requestDaemonShutdown, requestEnvelope, shouldShow, splitWirePayload, subscribeEnvelope, unsubscribeEnvelope, validateLoopInputIntentHint, waitDaemonReady, waitLoopStatusWithID, waitSubscriptionConfirmed };
|
package/dist/index.js
CHANGED
|
@@ -15,10 +15,16 @@ import {
|
|
|
15
15
|
EventCardCreated,
|
|
16
16
|
EventCardReplayBegin,
|
|
17
17
|
EventCardReplayEnd,
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
18
|
+
EventDeepResearchCompleted,
|
|
19
|
+
EventDeepResearchCrawlSummary,
|
|
20
|
+
EventDeepResearchGatherSummary,
|
|
21
|
+
EventDeepResearchProgress,
|
|
22
|
+
EventDeepResearchStarted,
|
|
23
|
+
EventDeepResearchStepCompleted,
|
|
24
|
+
EventExplorerCompleted,
|
|
25
|
+
EventExplorerMilestone,
|
|
26
|
+
EventExplorerStarted,
|
|
27
|
+
EventExplorerStepCompleted,
|
|
22
28
|
EventFinalReport,
|
|
23
29
|
EventGeneralFailed,
|
|
24
30
|
EventLoopReattachedWire,
|
|
@@ -35,9 +41,6 @@ import {
|
|
|
35
41
|
EventStrangeLoopStepQueued,
|
|
36
42
|
EventStrangeLoopStepStarted,
|
|
37
43
|
EventStreamToolCallUpdate,
|
|
38
|
-
EventTacitusCompleted,
|
|
39
|
-
EventTacitusGatherSummary,
|
|
40
|
-
EventTacitusStarted,
|
|
41
44
|
EventToolCallUpdatesBatch,
|
|
42
45
|
EventToolCompleted,
|
|
43
46
|
EventToolError,
|
|
@@ -83,7 +86,7 @@ import {
|
|
|
83
86
|
subscribeEnvelope,
|
|
84
87
|
unsubscribeEnvelope,
|
|
85
88
|
validateLoopInputIntentHint
|
|
86
|
-
} from "./chunk-
|
|
89
|
+
} from "./chunk-A6WGUBQE.js";
|
|
87
90
|
|
|
88
91
|
// src/session.ts
|
|
89
92
|
async function bootstrapLoopSession(client, resumeLoopId, config, loopNew) {
|
|
@@ -286,7 +289,7 @@ async function checkDaemonStatus(client, timeout) {
|
|
|
286
289
|
return client.requestResponse("daemon_status", {}, "daemon_status", timeout ?? 5e3);
|
|
287
290
|
}
|
|
288
291
|
async function isDaemonLive(wsURL, timeout) {
|
|
289
|
-
const { Client: Client2 } = await import("./client-
|
|
292
|
+
const { Client: Client2 } = await import("./client-UEBVV6HI.js");
|
|
290
293
|
const t = timeout ?? 5e3;
|
|
291
294
|
const client = new Client2(wsURL, defaultConfig());
|
|
292
295
|
try {
|
|
@@ -373,7 +376,7 @@ async function fetchLoopMessages(client, loopID, opts) {
|
|
|
373
376
|
);
|
|
374
377
|
}
|
|
375
378
|
async function connectedWebsocket(wsUrl, fn, timeoutMs = 3e4) {
|
|
376
|
-
const { Client: Client2 } = await import("./client-
|
|
379
|
+
const { Client: Client2 } = await import("./client-UEBVV6HI.js");
|
|
377
380
|
const client = new Client2(wsUrl, defaultConfig());
|
|
378
381
|
const deadline = Date.now() + timeoutMs;
|
|
379
382
|
try {
|
|
@@ -2183,10 +2186,16 @@ export {
|
|
|
2183
2186
|
EventCardReplayBegin,
|
|
2184
2187
|
EventCardReplayEnd,
|
|
2185
2188
|
EventClassifier,
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2189
|
+
EventDeepResearchCompleted,
|
|
2190
|
+
EventDeepResearchCrawlSummary,
|
|
2191
|
+
EventDeepResearchGatherSummary,
|
|
2192
|
+
EventDeepResearchProgress,
|
|
2193
|
+
EventDeepResearchStarted,
|
|
2194
|
+
EventDeepResearchStepCompleted,
|
|
2195
|
+
EventExplorerCompleted,
|
|
2196
|
+
EventExplorerMilestone,
|
|
2197
|
+
EventExplorerStarted,
|
|
2198
|
+
EventExplorerStepCompleted,
|
|
2190
2199
|
EventFinalReport,
|
|
2191
2200
|
EventGeneralFailed,
|
|
2192
2201
|
EventLoopReattachedWire,
|
|
@@ -2203,9 +2212,6 @@ export {
|
|
|
2203
2212
|
EventStrangeLoopStepQueued,
|
|
2204
2213
|
EventStrangeLoopStepStarted,
|
|
2205
2214
|
EventStreamToolCallUpdate,
|
|
2206
|
-
EventTacitusCompleted,
|
|
2207
|
-
EventTacitusGatherSummary,
|
|
2208
|
-
EventTacitusStarted,
|
|
2209
2215
|
EventToolCallUpdatesBatch,
|
|
2210
2216
|
EventToolCompleted,
|
|
2211
2217
|
EventToolError,
|