Yuki Takei 9 месяцев назад
Родитель
Сommit
44f8c36ccf

+ 1 - 0
apps/app/src/features/openai/interfaces/editor-assistant/llm-response-schemas.ts

@@ -23,6 +23,7 @@ export const LlmEditorAssistantDiffSchema = z.object({
   endLine: z.number()
   endLine: z.number()
     .int()
     .int()
     .positive()
     .positive()
+    .nullable() // https://platform.openai.com/docs/guides/structured-outputs?api-mode=responses#all-fields-must-be-required
     .optional()
     .optional()
     .describe('Ending line number for search (1-based, optional)'),
     .describe('Ending line number for search (1-based, optional)'),
 });
 });