Feature: Add qwen3 support - #1128
Open
RobbyRed98 wants to merge 5 commits into
Open
Conversation
* Added the model as follows: text-only, opt-in reasoning and tool use. * Updated README.md * Added model description to en, es and ja translations.
* Added the model as follows: text-only, opt-in reasoning and tool use. * Updated README.md * Added model description to en, es, id, ja, ms, pl, pt-br, th and vi translations.
* Added the model as follows: text-only, opt-in reasoning and tool use. * Updated README.md * Added model description to en, es, id, ja, ms, pl, pt-br, th and vi translations.
RobbyRed98
force-pushed
the
feature/add-qwen3-support
branch
from
July 21, 2026 18:54
42f42b8 to
f960ac2
Compare
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 support for three Qwen3 models across backend, frontend, i18n, and documentation:
qwen.qwen3-235b-a22b-2507-v1:0)qwen.qwen3-coder-30b-a3b-v1:0)qwen.qwen3-32b-v1:0)Changes
Backend (
backend/app/)bedrock.py: Addis_qwen_model()helper and_prepare_qwen_model_params()with standardinferenceConfig(temperature, topP, maxTokens). Register all 3 model IDs inBASE_MODEL_IDS. Add Qwen tois_multiple_system_prompt_content_supported. Wire up the converse configuration route. Note:stopSequencesexplicitly omitted — Qwen models don't support it.config.py: AddDEFAULT_QWEN_GENERATION_CONFIG(max_tokens: 4096, top_p: 0.8, temperature: 0.7). Add pricing entries for all 3 models in all 3 region groups (standard, us, eu/au).conversation.py: Add all 3 model keys totype_model_nameLiteral.Frontend (
frontend/src/)constants/index.ts: Add all 3 toAVAILABLE_MODEL_KEYS.hooks/useModel.ts: Add model config entries withsupportReasoning: true.i18n/*/index.ts: Add labels and descriptions for all 3 models in all 7 locales (en, es, id, ja, ms, pl, pt-br, th, vi).Other
README.md: Add Qwen3 models section to the supported model list.References