@opencow-ai/opencow-agent-sdk 0.4.19 → 0.4.20

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.
@@ -6,6 +6,14 @@ export declare class MalformedCommandError extends Error {
6
6
  export declare class AbortError extends Error {
7
7
  constructor(message?: string);
8
8
  }
9
+ /**
10
+ * A deterministic tool failure that the model cannot repair by retrying the
11
+ * same call. The dispatch loop returns the tool error to the client, then
12
+ * stops the current model continuation so it cannot enter a retry storm.
13
+ */
14
+ export declare class ToolContinuationStopError extends Error {
15
+ constructor(message: string, options?: ErrorOptions);
16
+ }
9
17
  /**
10
18
  * True iff `e` is any of the abort-shaped errors the codebase encounters:
11
19
  * our AbortError class, a DOMException from AbortController.abort()