feat(ai-proxy): add passthrough protocol for unrecognized API formats#13320
Open
shreemaan-abhishek wants to merge 1 commit intoapache:masterfrom
Open
feat(ai-proxy): add passthrough protocol for unrecognized API formats#13320shreemaan-abhishek wants to merge 1 commit intoapache:masterfrom
shreemaan-abhishek wants to merge 1 commit intoapache:masterfrom
Conversation
nic-6443
approved these changes
Apr 30, 2026
membphis
approved these changes
Apr 30, 2026
AlinsRan
approved these changes
Apr 30, 2026
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
The
ai-proxyplugin currently rejects any request whose body does not match a known protocol (openai-chat, openai-responses, openai-embeddings, anthropic-messages, bedrock-converse), making it impossible to proxy OpenAI-compatible APIs whose body shape isn't recognized — for example/v1/images/generations, whose{prompt, model, n, size}body matches no existing matcher. This PR adds apassthroughprotocol adapter that is registered last in the detection order and matches any non-empty JSON body, acting as a catch-all. When selected, the plugin forwards the request body unchanged to the upstream usingctx.var.uri(oroverride.endpointwhen configured) as the target path; only model rewrite (options.model), auth header injection (auth.header), and endpoint override (override.endpoint) are applied. All other protocol hooks (SSE parsing, usage extraction, message manipulation, response text extraction) return safe no-op values, so passthrough imposes zero parsing cost and stays out of the way of arbitrary upstream payloads.Which issue(s) this PR fixes:
Fixes #
Checklist