Fix #596: Qwen integration: qwen3.5-plus unsupported and OAuth setup ...#705
Open
Zakir Jiwani (JiwaniZakir) wants to merge 1 commit intobrowseros-ai:devfrom
Conversation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
|
PR author is not in the allowed authors list. |
Contributor
|
Thank you for your contribution! Before we can merge this PR, we need you to sign our Contributor License Agreement. To sign the CLA, please add a comment to this PR with the following text: You only need to sign once. After signing, this check will pass automatically. Troubleshooting
|
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.
Closes #596
Removes
qwen3.5-plusfrom theCUSTOM_PROVIDER_MODELSlist inmodels.tsbecause the model is unsupported by the Qwen Code OAuth provider and causes 15005ms timeout errors. The three remaining entries (coder-model,qwen3-coder-plus,qwen3-coder-flash) are all confirmed working with the OAuth flow.entrypoints/app/ai-settings/models.ts: deleted the{ modelId: 'qwen3.5-plus', contextLength: 1000000 }entry from theqwen-codeblock inCUSTOM_PROVIDER_MODELSentrypoints/app/ai-settings/models.test.ts(new): addsgetModelsForProvider('qwen-code')unit tests asserting the three valid model IDs are present andqwen3.5-plusis absentVerified by the new Bun test suite, which explicitly asserts
idsdoes not contain'qwen3.5-plus'and does contain'coder-model','qwen3-coder-plus', and'qwen3-coder-flash'.This PR was created with AI assistance (Claude). The changes were reviewed by quality gates and a critic model before submission.