mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-05-05 23:42:03 +00:00
feat: add qwen3.5-plus model support for Coding Plan
- Add qwen3.5-plus configuration for both China and Global regions - Update README with qwen3.5-plus setup instructions - Fix Coding Plan console URL for international users - Update tests for new model count Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
parent
4cd42187b8
commit
89c78c7bf3
4 changed files with 42 additions and 4 deletions
|
|
@ -24,7 +24,7 @@ const CODING_PLAN_API_KEY_URL =
|
|||
'https://bailian.console.aliyun.com/?tab=model#/efm/coding_plan';
|
||||
|
||||
const CODING_PLAN_INTL_API_KEY_URL =
|
||||
'https://modelstudio.console.alibabacloud.com/ap-southeast-1/?tab=globalset#/efm/api_key';
|
||||
'https://modelstudio.console.alibabacloud.com/?tab=dashboard#/efm/coding_plan';
|
||||
|
||||
export function ApiKeyInput({
|
||||
onSubmit,
|
||||
|
|
|
|||
|
|
@ -391,8 +391,8 @@ describe('useCodingPlanUpdates', () => {
|
|||
>;
|
||||
|
||||
// Should have new China configs + custom config only (global config removed since regions are mutually exclusive)
|
||||
// The template has 2 models, so we expect 2 (from template) + 1 (custom) = 3
|
||||
expect(updatedConfigs.length).toBe(3);
|
||||
// The template has 3 models, so we expect 3 (from template) + 1 (custom) = 4
|
||||
expect(updatedConfigs.length).toBe(4);
|
||||
|
||||
// Should NOT contain the Global config (mutually exclusive)
|
||||
expect(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue