fix(browser): send extraction schemas under json_schema - #2034
Merged
Conversation
🦋 Changeset detectedLatest commit: d2ab713 The changes in this PR will be included in the next version bump. This PR includes changesets to release 2 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
agents
@cloudflare/ai-chat
@cloudflare/codemode
create-think
hono-agents
@cloudflare/shell
@cloudflare/think
@cloudflare/voice
@cloudflare/worker-bundler
commit: |
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.
This PR fixes Browser Run schema extraction by sending schemas under
response_format.json_schemaand aligning the exported Quick Action type and examples with the service contract. Fixes #2029.Why
browser_extractaccepts a model-facingschema, but forwarded it to Browser Run asresponse_format.schema. Browser Run requiresresponse_format.json_schema, so every schema-based extraction failed with HTTP 400.Public API Surface
QuickActionExtractInput.response_formatnow usesjson_schemainstead ofschema.browser_extractinput remains unchanged: models still pass the schema through its top-levelschemafield.Code Changes
browser_extractschemas toresponse_format.json_schema.json_schemaand rejects the invalidschemaproperty.agentspatch changeset.Compatibility
Direct callers of
browserExtractorrunQuickActionthat constructresponse_formatmust rename its nestedschemaproperty tojson_schema. The previous property matched the published SDK type but was rejected by Browser Run at runtime.