Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add warning for .optional() usage in OpenAI API schemas #1214

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
feat: add warning for .optional() usage in OpenAI API schemas
This commit adds a warning when .optional() is used in schemas for OpenAI API
Structured Outputs, recommending the use of .nullable() instead.

- Added warning in optional.ts that triggers when openaiStrictMode is true
- Added test to verify warning behavior

Fixes #1180
  • Loading branch information
devin-ai-integration[bot] committed Dec 9, 2024
commit 2ace9e44aafca38f485cdc9d028bff6ffd68371f
9 changes: 9 additions & 0 deletions src/_vendor/zod-to-json-schema/parsers/optional.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ import { JsonSchema7Type, parseDef } from '../parseDef';
import { Refs } from '../Refs';

export const parseOptionalDef = (def: ZodOptionalDef, refs: Refs): JsonSchema7Type | undefined => {
if (refs.openaiStrictMode) {
const fieldName = refs.propertyPath?.slice(-1)[0] || 'unknown';
console.warn(
`Warning: Field "${fieldName}" uses .optional() which is not supported by OpenAI API Structured Outputs. ` +
`Please use .nullable() instead. ` +
`See: https://platform.openai.com/docs/guides/structured-outputs#all-fields-must-be-required`
);
}

if (refs.currentPath.toString() === refs.propertyPath?.toString()) {
return parseDef(def.innerType._def, refs);
}
Expand Down
18 changes: 18 additions & 0 deletions tests/helpers/zod.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,24 @@ describe('zodResponseFormat', () => {
`);
});

it('warns when using optional fields with OpenAI API', () => {
const consoleSpy = jest.spyOn(console, 'warn');

zodResponseFormat(
z.object({
required: z.string(),
optional: z.string().optional(),
}),
'test',
);

expect(consoleSpy).toHaveBeenCalledWith(
expect.stringContaining('uses .optional() which is not supported by OpenAI API Structured Outputs')
);

consoleSpy.mockRestore();
});

it('automatically adds properties with defaults to `required`', () => {
expect(
zodResponseFormat(
Expand Down