[codex] fix(gemini): pass custom http options to sdk - #12014
Open
yzlu0917 wants to merge 1 commit into
Open
Conversation
yzlu0917
force-pushed
the
codex/issue-12008-gemini-custom-headers
branch
from
April 9, 2026 11:25
daca94d to
97ab659
Compare
This was referenced Jul 29, 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.
Summary
requestOptions.headersandrequestOptions.timeoutinto theGoogleGenAISDK viahttpOptionsapiBasevalues into the SDK so chat/stream requests use the same endpoint override as embed requestsWhy
Continue's Gemini adapter already honored custom request options for the manual
embed()path, but chat and streaming requests were created throughGoogleGenAIwithout any of the configuredrequestOptions.headersor customapiBase. That meant API gateways expecting custom auth headers likex-api-keycould work for one path and silently fail for the main chat path.This change keeps the SDK-based Gemini implementation, but makes its HTTP configuration consistent with the rest of the adapter.
Validation
npm test -- src/test/gemini-adapter.vitest.ts src/test/main.test.tsinpackages/openai-adaptersCloses #12008
Summary by cubic
Fixes the Gemini adapter to pass custom headers, timeouts, and a custom
apiBaseto the@google/genaiSDK for chat and streaming. Also standardizes OpenRouter defaults by exporting and applyingOPENROUTER_HEADERS. Addresses #12008.httpOptionsfromrequestOptions.headersandrequestOptions.timeout, pass toGoogleGenAI, and forwardapiBase(clearsapiVersion) so chat/stream use the same endpoint as embeds. Added tests for headers/base URL forwarding and omittinghttpOptionsby default.OPENROUTER_HEADERSfrom@continuedev/openai-adaptersand merge them into the coreOpenRouterclient’srequestOptions.headers. RenameX-TitletoX-OpenRouter-Titleand addX-OpenRouter-Categories.Written for commit 97ab659. Summary will update on new commits.