chore: generate
parent
ed06de5e30
commit
f8fb08b3b4
|
|
@ -1586,6 +1586,16 @@ export type Config = {
|
|||
*/
|
||||
url?: string
|
||||
}
|
||||
compaction?: {
|
||||
/**
|
||||
* Enable automatic compaction when context is full (default: true)
|
||||
*/
|
||||
auto?: boolean
|
||||
/**
|
||||
* Enable pruning of old tool outputs (default: true)
|
||||
*/
|
||||
prune?: boolean
|
||||
}
|
||||
experimental?: {
|
||||
hook?: {
|
||||
file_edited?: {
|
||||
|
|
|
|||
|
|
@ -8566,6 +8566,19 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"compaction": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"auto": {
|
||||
"description": "Enable automatic compaction when context is full (default: true)",
|
||||
"type": "boolean"
|
||||
},
|
||||
"prune": {
|
||||
"description": "Enable pruning of old tool outputs (default: true)",
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"experimental": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
|
|
|||
Loading…
Reference in New Issue