Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/en/DEPLOY_OPTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -979,6 +979,7 @@ This solution supports the following text generation models:
"apac.anthropic.claude-3-sonnet-20240229-v1:0",
"apac.anthropic.claude-3-5-sonnet-20240620-v1:0",
"apac.anthropic.claude-3-5-sonnet-20241022-v2:0",
"deepseek.v3-v1:0",
"us.deepseek.r1-v1:0",
"us.writer.palmyra-x5-v1:0",
"us.writer.palmyra-x4-v1:0",
Expand Down
1 change: 1 addition & 0 deletions docs/ja/DEPLOY_OPTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -994,6 +994,7 @@ const envs: Record<string, Partial<StackInput>> = {
"apac.anthropic.claude-3-sonnet-20240229-v1:0",
"apac.anthropic.claude-3-5-sonnet-20240620-v1:0",
"apac.anthropic.claude-3-5-sonnet-20241022-v2:0",
"deepseek.v3-v1:0",
"us.deepseek.r1-v1:0",
"us.writer.palmyra-x5-v1:0",
"us.writer.palmyra-x4-v1:0",
Expand Down
1 change: 1 addition & 0 deletions docs/ko/DEPLOY_OPTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -975,6 +975,7 @@ const envs: Record<string, Partial<StackInput>> = {
"apac.anthropic.claude-3-sonnet-20240229-v1:0",
"apac.anthropic.claude-3-5-sonnet-20240620-v1:0",
"apac.anthropic.claude-3-5-sonnet-20241022-v2:0",
"deepseek.v3-v1:0",
"us.deepseek.r1-v1:0",
"us.writer.palmyra-x5-v1:0",
"us.writer.palmyra-x4-v1:0",
Expand Down
8 changes: 8 additions & 0 deletions packages/cdk/lambda/utils/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1483,6 +1483,14 @@ export const BEDROCK_TEXT_GEN_MODELS: {
extractConverseOutput: extractConverseOutput,
extractConverseStreamOutput: extractConverseStreamOutput,
},
'deepseek.v3-v1:0': {
defaultParams: DEEPSEEK_DEFAULT_PARAMS,
usecaseParams: USECASE_DEFAULT_PARAMS,
createConverseCommandInput: createConverseCommandInput,
createConverseStreamCommandInput: createConverseStreamCommandInput,
extractConverseOutput: extractConverseOutput,
extractConverseStreamOutput: extractConverseStreamOutput,
},
'us.deepseek.r1-v1:0': {
defaultParams: DEEPSEEK_DEFAULT_PARAMS,
usecaseParams: USECASE_DEFAULT_PARAMS,
Expand Down
4 changes: 4 additions & 0 deletions packages/common/src/application/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,10 @@ export const modelMetadata: Record<string, ModelMetadata> = {
displayName: 'Command R+',
},
// DeepSeek
'deepseek.v3-v1:0': {
flags: MODEL_FEATURE.TEXT_ONLY,
displayName: 'DeepSeek V3.1',
},
'us.deepseek.r1-v1:0': {
flags: MODEL_FEATURE.TEXT_DOC_REASONING,
displayName: 'DeepSeek-R1',
Expand Down
Loading