We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f984063 commit 12d7d5fCopy full SHA for 12d7d5f
common/src/tools/params/tool/ask-user.ts
@@ -8,9 +8,10 @@ export const questionSchema = z.object({
8
question: z.string().describe('The question to ask the user'),
9
header: z
10
.string()
11
- .max(12)
+ .max(18)
12
.optional()
13
.describe(
14
+ // Tell the llm 12 chars so that if it goes over slightly, it will still be under the max.
15
'Short label (max 12 chars) displayed as a chip/tag. Example: "Auth method"',
16
),
17
options: z
0 commit comments