feat: add premise fallback to Vercel schema selection#48
Merged
Conversation
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.
Summary
Adds premise-driven fallback schema selection to the Vercel AI SDK
generateObjectschema-selection example.The example still selects schemas from explicit policy first:
use refund_intakeuse technical_supportWhen no policy-selected schema exists, the host can now fall back to saved factual premise state:
refund_intaketechnical_supportSchema selection remains host-owned and happens before
generateObjectruns.Why
The generic schema-selection examples now demonstrate both policy-driven and premise-driven schema selection.
This keeps the Vercel AI SDK example aligned with that same-domain story and shows the runtime path:
authoritative state -> selected schema -> generateObject requestwithout deriving schema selection from model output.
Example metadata
generateObjectChecklist
Notes
Validation performed:
cd typescript/examples/schema_selection/vercel_ai_sdk_generate_object && npm run build— passedcd typescript/examples/schema_selection/vercel_ai_sdk_generate_object && npm run typecheck— passedcd typescript/examples/schema_selection/vercel_ai_sdk_generate_object && npm test— passed,15 passed, 1 skipped./scripts/validate_typescript_fast.sh— passednpx --yes markdownlint-cli2 typescript/examples/schema_selection/vercel_ai_sdk_generate_object/README.md typescript/examples/schema_selection/README.md— passedcd typescript/examples/schema_selection/vercel_ai_sdk_generate_object && RUN_VERCEL_AI_SDK_LIVE_MODEL=1 OPENAI_API_KEY="$OPENAI_API_KEY" npm test— passed,16 passed