Skip to content

Commit 4bee8b3

Browse files
orangeclkclaude
andauthored
feat: add DeepSeek-V3.2 Pro model support (#2179)
- Add DeepSeek-V3.2 model to position configuration - Create new model configuration file for DeepSeek-V3.2 Pro - Update plugin version to 0.0.36 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude <noreply@anthropic.com>
1 parent 2f7b43a commit 4bee8b3

File tree

3 files changed

+65
-1
lines changed

3 files changed

+65
-1
lines changed

models/siliconflow/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.0.35
28+
version: 0.0.36
2929
created_at: 2024-09-20T00:13:50.29298939-04:00

models/siliconflow/models/llm/_position.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
- Pro/deepseek-ai/DeepSeek-V3
55
- Pro/deepseek-ai/DeepSeek-V3.1
66
- Pro/deepseek-ai/DeepSeek-V3.1-Terminus
7+
- Pro/deepseek-ai/DeepSeek-V3.2
78
- deepseek-ai/DeepSeek-OCR
89
- deepseek-ai/DeepSeek-R1
910
- deepseek-ai/DeepSeek-V3
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
model: Pro/deepseek-ai/DeepSeek-V3.2
2+
label:
3+
en_US: Pro/deepseek-ai/DeepSeek-V3.2
4+
model_type: llm
5+
features:
6+
- agent-thought
7+
- tool-call
8+
- stream-tool-call
9+
model_properties:
10+
mode: chat
11+
context_size: 163840
12+
parameter_rules:
13+
- name: temperature
14+
use_template: temperature
15+
- name: max_tokens
16+
use_template: max_tokens
17+
type: int
18+
default: 32768
19+
min: 1
20+
max: 65536
21+
help:
22+
zh_Hans: 指定生成结果长度的上限。如果生成结果截断,可以调大该参数。
23+
en_US: Specifies the upper limit on the length of generated results. If the generated results are truncated, you can increase this parameter.
24+
- name: top_p
25+
use_template: top_p
26+
- name: top_k
27+
label:
28+
zh_Hans: 取样数量
29+
en_US: Top k
30+
type: int
31+
help:
32+
zh_Hans: 仅从每个后续标记的前 K 个选项中采样。
33+
en_US: Only sample from the top K options for each subsequent token.
34+
required: false
35+
- name: frequency_penalty
36+
use_template: frequency_penalty
37+
- name: response_format
38+
label:
39+
zh_Hans: 回复格式
40+
en_US: Response Format
41+
type: string
42+
help:
43+
zh_Hans: 指定模型必须输出的格式
44+
en_US: specifying the format that the model must output
45+
required: false
46+
options:
47+
- text
48+
- json_object
49+
- name: enable_thinking
50+
required: false
51+
type: boolean
52+
default: false
53+
label:
54+
zh_Hans: 思考模式
55+
en_US: Thinking mode
56+
help:
57+
zh_Hans: 是否开启思考模式。
58+
en_US: Whether to enable thinking mode.
59+
pricing:
60+
input: "2"
61+
output: "3"
62+
unit: "0.000001"
63+
currency: RMB

0 commit comments

Comments
 (0)