Skip to content

Commit 855950e

Browse files
✨ feat(deep-seek-v3): add DeepSeek V3.1 model support (#1315)
1 parent 8d7dddd commit 855950e

File tree

5 files changed

+15
-0
lines changed

5 files changed

+15
-0
lines changed

docs/en/DEPLOY_OPTION.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -979,6 +979,7 @@ This solution supports the following text generation models:
979979
"apac.anthropic.claude-3-sonnet-20240229-v1:0",
980980
"apac.anthropic.claude-3-5-sonnet-20240620-v1:0",
981981
"apac.anthropic.claude-3-5-sonnet-20241022-v2:0",
982+
"deepseek.v3-v1:0",
982983
"us.deepseek.r1-v1:0",
983984
"qwen.qwen3-235b-a22b-2507-v1:0",
984985
"qwen.qwen3-32b-v1:0",

docs/ja/DEPLOY_OPTION.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -994,6 +994,7 @@ const envs: Record<string, Partial<StackInput>> = {
994994
"apac.anthropic.claude-3-sonnet-20240229-v1:0",
995995
"apac.anthropic.claude-3-5-sonnet-20240620-v1:0",
996996
"apac.anthropic.claude-3-5-sonnet-20241022-v2:0",
997+
"deepseek.v3-v1:0",
997998
"us.deepseek.r1-v1:0",
998999
"qwen.qwen3-235b-a22b-2507-v1:0",
9991000
"qwen.qwen3-32b-v1:0",

docs/ko/DEPLOY_OPTION.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -975,6 +975,7 @@ const envs: Record<string, Partial<StackInput>> = {
975975
"apac.anthropic.claude-3-sonnet-20240229-v1:0",
976976
"apac.anthropic.claude-3-5-sonnet-20240620-v1:0",
977977
"apac.anthropic.claude-3-5-sonnet-20241022-v2:0",
978+
"deepseek.v3-v1:0",
978979
"us.deepseek.r1-v1:0",
979980
"qwen.qwen3-235b-a22b-2507-v1:0",
980981
"qwen.qwen3-32b-v1:0",

packages/cdk/lambda/utils/models.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1508,6 +1508,14 @@ export const BEDROCK_TEXT_GEN_MODELS: {
15081508
extractConverseOutput: extractConverseOutput,
15091509
extractConverseStreamOutput: extractConverseStreamOutput,
15101510
},
1511+
'deepseek.v3-v1:0': {
1512+
defaultParams: DEEPSEEK_DEFAULT_PARAMS,
1513+
usecaseParams: USECASE_DEFAULT_PARAMS,
1514+
createConverseCommandInput: createConverseCommandInput,
1515+
createConverseStreamCommandInput: createConverseStreamCommandInput,
1516+
extractConverseOutput: extractConverseOutput,
1517+
extractConverseStreamOutput: extractConverseStreamOutput,
1518+
},
15111519
'us.deepseek.r1-v1:0': {
15121520
defaultParams: DEEPSEEK_DEFAULT_PARAMS,
15131521
usecaseParams: USECASE_DEFAULT_PARAMS,

packages/common/src/application/model.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,10 @@ export const modelMetadata: Record<string, ModelMetadata> = {
380380
displayName: 'Command R+',
381381
},
382382
// DeepSeek
383+
'deepseek.v3-v1:0': {
384+
flags: MODEL_FEATURE.TEXT_ONLY,
385+
displayName: 'DeepSeek V3.1',
386+
},
383387
'us.deepseek.r1-v1:0': {
384388
flags: MODEL_FEATURE.TEXT_DOC_REASONING,
385389
displayName: 'DeepSeek-R1',

0 commit comments

Comments
 (0)