fix(gemini): normalize array-type nullable notation in SchemaMap prop…#997
Open
yondifon wants to merge 1 commit intoprism-php:mainfrom
Open
fix(gemini): normalize array-type nullable notation in SchemaMap prop…#997yondifon wants to merge 1 commit intoprism-php:mainfrom
yondifon wants to merge 1 commit intoprism-php:mainfrom
Conversation
…erties Gemini's JSON Schema subset does not support the standard draft-4 array-type notation for nullability (e.g. `"type": ["integer", "null"]`). It expects `"type": "integer", "nullable": true` instead. When schemas are passed as raw arrays (e.g. via Laravel AI SDK's ObjectSchema which wraps Illuminate's JsonSchema serializer), the per-property SchemaMap normalization is never applied — those schemas bypass the `instanceof ObjectSchema` branch and their properties are spread directly into the payload with array-type notation intact. Add `normalizeProperties()` to intercept properties in `$schemaArray` before they reach Gemini, converting `["type", "null"]` arrays into the `nullable: true` format Gemini understands.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Tested on
gemini-2.5-flash& 'gemini-3-flash'Gemini doesn't support the standard JSON Schema array-type notation for nullable fields:
{ "type": ["integer", "null"] }It expects:
{ "type": "integer", "nullable": true }This affects schemas passed as raw arrays — e.g. via Laravel AI SDK's
ObjectSchemawhich wraps Illuminate'sJsonSchemaserializer:Laravel's serializer correctly follows JSON Schema draft-4 and converts
nullable()to["integer", "null"]. However,SchemaMaponly normalizes properties when$this->schema instanceof ObjectSchema— raw array schemas bypass this branch and are spread into the payload as-is.normalizeProperties()intercepts$schemaArray['properties']before they reach Gemini, converting["type", "null"]arrays into"nullable": true.Breaking Changes
None.