@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.
- package/dist/extensions/context/compaction.d.ts +8 -0
- package/dist/hub/daemon/entry.js +168 -168
- package/dist/hub/index.js +166 -166
- package/dist/index.js +165 -165
- package/dist/services/llms/apihandler-agent-model-adapter.d.ts +1 -1
- package/dist/services/providers/local-provider-registry.d.ts +2 -6
- package/dist/services/telemetry/core-events.d.ts +3 -1
- package/dist/types/config.d.ts +7 -1
- package/package.json +4 -4
|
@@ -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 {
|