fix(api): increase Socrates description max length to 10000 (#66912)

Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com>
This commit is contained in:
Jeevankumar S
2026-04-13 19:28:18 +05:30
committed by GitHub
parent 88044e6990
commit 21dd18de31
+1 -1
View File
@@ -13,7 +13,7 @@ const usageFields = {
export const askSocrates = {
body: Type.Object(
{
description: Type.String({ minLength: 1, maxLength: 2000 }),
description: Type.String({ minLength: 1, maxLength: 10000 }),
userInput: Type.Optional(Type.String({ minLength: 1, maxLength: 50000 })),
seed: Type.String({ minLength: 1, maxLength: 50000 }),
hints: Type.Array(socratesHint, { maxItems: 200 })