Skip to content

Commit 12d7d5f

Browse files
committed
Allow a larger question header
1 parent f984063 commit 12d7d5f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

common/src/tools/params/tool/ask-user.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ export const questionSchema = z.object({
88
question: z.string().describe('The question to ask the user'),
99
header: z
1010
.string()
11-
.max(12)
11+
.max(18)
1212
.optional()
1313
.describe(
14+
// Tell the llm 12 chars so that if it goes over slightly, it will still be under the max.
1415
'Short label (max 12 chars) displayed as a chip/tag. Example: "Auth method"',
1516
),
1617
options: z

0 commit comments

Comments
 (0)