feat: add updated model support (minimax-m2.5, minimax-m2.1, glm-5, deepseek-3.2, qwen3-coder-next)#81
Closed
igorvelho wants to merge 1 commit into
Closed
feat: add updated model support (minimax-m2.5, minimax-m2.1, glm-5, deepseek-3.2, qwen3-coder-next)#81igorvelho wants to merge 1 commit into
igorvelho wants to merge 1 commit into
Conversation
…eepseek-3.2, qwen3-coder-next) Models confirmed available via ListAvailableModels API. Bumped version to 1.8.2, forked from @zhafron/opencode-kiro-auth@1.8.1.
Owner
|
Closing this PR because it now conflicts with current |
Owner
|
Closing for now due to unresolved merge conflicts with current |
evlic
added a commit
to ybbapp/opencode-kiro-auth
that referenced
this pull request
May 5, 2026
…5, deepseek-3.2, qwen3-coder-next)
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
The
MODEL_MAPPINGinconstants.tscontained outdated/missing backend model IDs for several non-Claude models. This PR adds the correct model IDs as confirmed via theListAvailableModelsAPI endpoint (GET /ListAvailableModels?origin=AI_EDITOR).Problem
The following models were either missing or had wrong backend IDs that returned
INVALID_MODEL_ID:minimax-m2→MINIMAX_MINIMAX_M2(wrong backend ID)glm-5— missing entirelydeepseek-3.2— missing entirelyqwen3-coder-next— missing entirelyFix
Added the following entries to
MODEL_MAPPINGwith IDs confirmed working against thegenerateAssistantResponseendpoint:minimax-m2-5minimax-m2.5minimax-m2-1minimax-m2.1glm-5glm-5deepseek-3-2deepseek-3.2qwen3-coder-nextqwen3-coder-nextVerification
All models confirmed returning HTTP 200 from
generateAssistantResponse. The correct backend model IDs were discovered by callingGET /ListAvailableModels?origin=AI_EDITOR&profileArn=...which returns the full list of models available for the account.