File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -68,11 +68,11 @@ DCP uses its own config file (`~/.config/opencode/dcp.jsonc` or `.opencode/dcp.j
6868 },
6969 // Remove thinking/reasoning LLM blocks
7070 " pruneThinkingBlocks" : {
71- " enabled" : true
71+ " enabled" : false
7272 },
7373 // Run an LLM to analyze what tool calls are no longer relevant on idle
7474 " onIdle" : {
75- " enabled" : true ,
75+ " enabled" : false ,
7676 // Override model for analysis (format: "provider/model")
7777 // "model": "anthropic/claude-haiku-4-5",
7878 // Show toast notifications when model selection fails
Original file line number Diff line number Diff line change @@ -238,10 +238,10 @@ const defaultConfig: PluginConfig = {
238238 protectedTools : [ ...DEFAULT_PROTECTED_TOOLS ]
239239 } ,
240240 pruneThinkingBlocks : {
241- enabled : true
241+ enabled : false
242242 } ,
243243 onIdle : {
244- enabled : true ,
244+ enabled : false ,
245245 showModelErrorToasts : true ,
246246 strictModelSelection : false ,
247247 protectedTools : [ ...DEFAULT_PROTECTED_TOOLS ]
@@ -324,11 +324,11 @@ function createDefaultConfig(): void {
324324 },
325325 // Remove thinking/reasoning LLM blocks
326326 "pruneThinkingBlocks": {
327- "enabled": true
327+ "enabled": false
328328 },
329329 // Run an LLM to analyze what tool calls are no longer relevant on idle
330330 "onIdle": {
331- "enabled": true ,
331+ "enabled": false ,
332332 // Override model for analysis (format: "provider/model")
333333 // "model": "anthropic/claude-haiku-4-5",
334334 // Show toast notifications when model selection fails
You can’t perform that action at this time.
0 commit comments