File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed
Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -1586,6 +1586,16 @@ export type Config = {
15861586 */
15871587 url ?: string
15881588 }
1589+ compaction ?: {
1590+ /**
1591+ * Enable automatic compaction when context is full (default: true)
1592+ */
1593+ auto ?: boolean
1594+ /**
1595+ * Enable pruning of old tool outputs (default: true)
1596+ */
1597+ prune ?: boolean
1598+ }
15891599 experimental ?: {
15901600 hook ?: {
15911601 file_edited ?: {
Original file line number Diff line number Diff line change 85668566 }
85678567 }
85688568 },
8569+ "compaction" : {
8570+ "type" : " object" ,
8571+ "properties" : {
8572+ "auto" : {
8573+ "description" : " Enable automatic compaction when context is full (default: true)" ,
8574+ "type" : " boolean"
8575+ },
8576+ "prune" : {
8577+ "description" : " Enable pruning of old tool outputs (default: true)" ,
8578+ "type" : " boolean"
8579+ }
8580+ }
8581+ },
85698582 "experimental" : {
85708583 "type" : " object" ,
85718584 "properties" : {
You can’t perform that action at this time.
0 commit comments