@cline/core 0.0.68 → 0.0.69-nightly.1785813390

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.
@@ -11,6 +11,14 @@ export interface ContextPipelinePrepareTurnInput {
11
11
  systemPrompt: string;
12
12
  tools: unknown[];
13
13
  model: CoreCompactionContext["model"];
14
+ /**
15
+ * Set by the runtime when the provider rejected the previous request as
16
+ * exceeding the model's context window. Forces a compaction regardless of
17
+ * the token-estimate trigger (the estimate just proved wrong) and uses the
18
+ * deterministic basic strategy — recovery must not depend on another
19
+ * successful LLM request.
20
+ */
21
+ overflowRecovery?: boolean;
14
22
  emitStatusNotice?: (message: string, metadata?: Record<string, unknown>) => void;
15
23
  }
16
24
  export interface ContextPipelinePrepareTurnResult {