Skip to content

Commit f8fb08b

Browse files
committed
chore: generate
1 parent ed06de5 commit f8fb08b

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

packages/sdk/js/src/v2/gen/types.gen.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff 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?: {

packages/sdk/openapi.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8566,6 +8566,19 @@
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": {

0 commit comments

Comments
 (0)