Skip to content

Commit 0fc3306

Browse files
ZenKaiii泠悟claude
authored
feat(tongyi): add qwen3-max-2026-01-23 model (#2499)
* feat(tongyi): add qwen3-max-2026-01-23 model Add new qwen3-max-2026-01-23 model configuration file. Co-Authored-By: Claude (glm-4.7) <[email protected]> * feat(tongyi): add qwen3-max-2026-01-23 model Add new qwen3-max-2026-01-23 model configuration file. Co-Authored-By: Claude (glm-4.7) <[email protected]> * feat(tongyi): add qwen3-max-2026-01-23 model Add new qwen3-max-2026-01-23 model configuration file. Co-Authored-By: Claude (glm-4.7) <[email protected]> --------- Co-authored-by: 泠悟 <[email protected]> Co-authored-by: Claude (glm-4.7) <[email protected]>
1 parent 14447cd commit 0fc3306

File tree

3 files changed

+101
-1
lines changed

3 files changed

+101
-1
lines changed

models/tongyi/manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ resource:
2525
model:
2626
enabled: false
2727
type: plugin
28-
version: 0.1.20
28+
version: 0.1.21
2929
created_at: "2024-12-10T16:13:50.29298939+08:00"

models/tongyi/models/llm/_position.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
- deepseek-v3
1212
- qwen3-max
1313
- qwen3-max-2025-09-23
14+
- qwen3-max-2026-01-23
1415
- qwen3-max-preview
1516
- qwen3-coder-plus
1617
- qwen3-coder-480b-a35b-instruct
Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
# for more details, please refer to https://help.aliyun.com/zh/model-studio/getting-started/models
2+
model: qwen3-max-2026-01-23
3+
label:
4+
en_US: qwen3-max-2026-01-23
5+
model_type: llm
6+
features:
7+
- multi-tool-call
8+
- agent-thought
9+
- stream-tool-call
10+
model_properties:
11+
mode: chat
12+
context_size: 262144
13+
parameter_rules:
14+
- name: temperature
15+
use_template: temperature
16+
type: float
17+
default: 0.3
18+
min: 0.0
19+
max: 2.0
20+
help:
21+
zh_Hans: 用于控制随机性和多样性的程度。具体来说,temperature值控制了生成文本时对每个候选词的概率分布进行平滑的程度。较高的temperature值会降低概率分布的峰值,使得更多的低概率词被选择,生成结果更加多样化;而较低的temperature值则会增强概率分布的峰值,使得高概率词更容易被选择,生成结果更加确定。
22+
en_US: Used to control the degree of randomness and diversity. Specifically, the temperature value controls the degree to which the probability distribution of each candidate word is smoothed when generating text. A higher temperature value will reduce the peak value of the probability distribution, allowing more low-probability words to be selected, and the generated results will be more diverse; while a lower temperature value will enhance the peak value of the probability distribution, making it easier for high-probability words to be selected, the generated results are more certain.
23+
- name: max_tokens
24+
use_template: max_tokens
25+
type: int
26+
default: 8192
27+
min: 1
28+
max: 65536
29+
help:
30+
zh_Hans: 用于指定模型在生成内容时token的最大数量,它定义了生成的上限,但不保证每次都会生成到这个数量。
31+
en_US: It is used to specify the maximum number of tokens when the model generates content. It defines the upper limit of generation, but does not guarantee that this number will be generated every time.
32+
- name: top_p
33+
use_template: top_p
34+
type: float
35+
default: 0.8
36+
min: 0.1
37+
max: 0.9
38+
help:
39+
zh_Hans: 生成过程中核采样方法概率阈值,例如,取值为0.8时,仅保留概率加起来大于等于0.8的最可能token的最小集合作为候选集。取值范围为(0,1.0),取值越大,生成的随机性越高;取值越低,生成的确定性越高。
40+
en_US: The probability threshold of the kernel sampling method during the generation process. For example, when the value is 0.8, only the smallest set of the most likely tokens with a sum of probabilities greater than or equal to 0.8 is retained as the candidate set. The value range is (0,1.0). The larger the value, the higher the randomness generated; the lower the value, the higher the certainty generated.
41+
- name: top_k
42+
type: int
43+
min: 0
44+
max: 99
45+
label:
46+
zh_Hans: 取样数量
47+
en_US: Top k
48+
help:
49+
zh_Hans: 生成时,采样候选集的大小。例如,取值为50时,仅将单次生成中得分最高的50个token组成随机采样的候选集。取值越大,生成的随机性越高;取值越小,生成的确定性越高。
50+
en_US: The size of the sample candidate set when generated. For example, when the value is 50, only the 50 highest-scoring tokens in a single generation form a randomly sampled candidate set. The larger the value, the higher the randomness generated; the smaller the value, the higher the certainty generated.
51+
- name: seed
52+
required: false
53+
type: int
54+
default: 1234
55+
label:
56+
zh_Hans: 随机种子
57+
en_US: Random seed
58+
help:
59+
zh_Hans: 生成时使用的随机数种子,用户控制模型生成内容的随机性。支持无符号64位整数,默认值为 1234。在使用seed时,模型将尽可能生成相同或相似的结果,但目前不保证每次生成的结果完全相同。
60+
en_US: The random number seed used when generating, the user controls the randomness of the content generated by the model. Supports unsigned 64-bit integers, default value is 1234. When using seed, the model will try its best to generate the same or similar results, but there is currently no guarantee that the results will be exactly the same every time.
61+
- name: repetition_penalty
62+
required: false
63+
type: float
64+
default: 1.1
65+
label:
66+
zh_Hans: 重复惩罚
67+
en_US: Repetition penalty
68+
help:
69+
zh_Hans: 用于控制模型生成时的重复度。提高repetition_penalty时可以降低模型生成的重复度。1.0表示不做惩罚。
70+
en_US: Used to control the repeatability when generating models. Increasing repetition_penalty can reduce the duplication of model generation. 1.0 means no punishment.
71+
- name: enable_search
72+
type: boolean
73+
default: false
74+
label:
75+
zh_Hans: 联网搜索
76+
en_US: Web Search
77+
help:
78+
zh_Hans: 模型内置了互联网搜索服务,该参数控制模型在生成文本时是否参考使用互联网搜索结果。启用互联网搜索,模型会将搜索结果作为文本生成过程中的参考信息,但模型会基于其内部逻辑"自行判断"是否使用互联网搜索结果。
79+
en_US: The model has a built-in Internet search service. This parameter controls whether the model refers to Internet search results when generating text. When Internet search is enabled, the model will use the search results as reference information in the text generation process, but the model will "judge" whether to use Internet search results based on its internal logic.
80+
- name: response_format
81+
label:
82+
zh_Hans: 回复格式
83+
en_US: Response Format
84+
type: string
85+
help:
86+
zh_Hans: 指定模型必须输出的格式
87+
en_US: specifying the format that the model must output
88+
required: false
89+
options:
90+
- text
91+
- json_object
92+
pricing:
93+
input: '0.006' # 0<Token≤32K
94+
output: '0.024' # 0<Token≤32K
95+
# Tiered pricing per 1k tokens: 0<Token≤32K=0.006/0.024
96+
# 32K<Token≤128K=0.01/0.04
97+
# 128K<Token≤252K=0.015/0.06
98+
unit: '0.001'
99+
currency: RMB

0 commit comments

Comments
 (0)