Skip to content

Commit 3932ee5

Browse files
committed
Increase read_docs default max_tokens to 20k
1 parent 8043a4e commit 3932ee5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

common/src/tools/params/tool/read-docs.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@ export const readDocsParams = {
2222
),
2323
max_tokens: z
2424
.number()
25+
.default(20_000)
2526
.optional()
2627
.describe(
27-
`Optional maximum number of tokens to return. Defaults to 10000. Values less than 10000 are automatically increased to 10000.`,
28+
`Optional maximum number of tokens to return. Defaults to 20000. Values less than 10000 are automatically increased to 10000.`,
2829
),
2930
})
3031
.describe(

0 commit comments

Comments
 (0)