Skip to content

Commit d2240d7

Browse files
chore: generate
1 parent dd1db47 commit d2240d7

2 files changed

Lines changed: 31 additions & 0 deletions

File tree

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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1633,6 +1633,19 @@ export type Config = {
16331633
*/
16341634
url?: string
16351635
}
1636+
/**
1637+
* Thresholds for truncating tool output. When output exceeds either limit, the full text is written to the truncation directory and a preview is returned.
1638+
*/
1639+
tool_output?: {
1640+
/**
1641+
* Maximum lines of tool output before it is truncated and saved to disk (default: 2000)
1642+
*/
1643+
max_lines?: number
1644+
/**
1645+
* Maximum bytes of tool output before it is truncated and saved to disk (default: 51200)
1646+
*/
1647+
max_bytes?: number
1648+
}
16361649
compaction?: {
16371650
/**
16381651
* Enable automatic compaction when context is full (default: true)

packages/sdk/openapi.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11822,6 +11822,24 @@
1182211822
}
1182311823
}
1182411824
},
11825+
"tool_output": {
11826+
"description": "Thresholds for truncating tool output. When output exceeds either limit, the full text is written to the truncation directory and a preview is returned.",
11827+
"type": "object",
11828+
"properties": {
11829+
"max_lines": {
11830+
"description": "Maximum lines of tool output before it is truncated and saved to disk (default: 2000)",
11831+
"type": "integer",
11832+
"exclusiveMinimum": 0,
11833+
"maximum": 9007199254740991
11834+
},
11835+
"max_bytes": {
11836+
"description": "Maximum bytes of tool output before it is truncated and saved to disk (default: 51200)",
11837+
"type": "integer",
11838+
"exclusiveMinimum": 0,
11839+
"maximum": 9007199254740991
11840+
}
11841+
}
11842+
},
1182511843
"compaction": {
1182611844
"type": "object",
1182711845
"properties": {

0 commit comments

Comments
 (0)