Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
okamoto-aws committed Dec 3, 2024
1 parent 5a49e17 commit 5608346
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions docs/DEPLOY_OPTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,9 @@ Prompt optimization のサポート状況は [こちら](https://docs.aws.amazon
"anthropic.claude-3-5-sonnet-20240620-v1:0",
"anthropic.claude-3-sonnet-20240229-v1:0",
"anthropic.claude-3-haiku-20240307-v1:0",
"amazon.nova-pro-v1:0",
"amazon.nova-lite-v1:0",
"amazon.nova-micro-v1:0",
"amazon.titan-text-premier-v1:0",
"meta.llama3-70b-instruct-v1:0",
"meta.llama3-8b-instruct-v1:0",
Expand Down
2 changes: 1 addition & 1 deletion packages/cdk/lambda/utils/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -916,7 +916,7 @@ export const BEDROCK_TEXT_GEN_MODELS: {
createConverseStreamCommandInput: createConverseStreamCommandInput,
extractConverseOutputText: extractConverseOutputText,
extractConverseStreamOutputText: extractConverseStreamOutputText,
}
},
};

// 画像生成に関する、各のModel のパラメーターや関数の定義
Expand Down
4 changes: 2 additions & 2 deletions packages/cdk/lib/construct/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export class Api extends Construct {
'cohere.command-r-plus-v1:0',
'amazon.nova-pro-v1:0',
'amazon.nova-lite-v1:0',
'amazon.nova-micro-v1:0'
'amazon.nova-micro-v1:0',
];
const multiModalModelIds = [
'anthropic.claude-3-5-sonnet-20241022-v2:0',
Expand All @@ -142,7 +142,7 @@ export class Api extends Construct {
'us.meta.llama3-2-11b-instruct-v1:0',
'us.meta.llama3-2-90b-instruct-v1:0',
'amazon.nova-pro-v1:0',
'amazon.nova-lite-v1:0'
'amazon.nova-lite-v1:0',
];
for (const modelId of modelIds) {
if (!supportedModelIds.includes(modelId)) {
Expand Down

0 comments on commit 5608346

Please sign in to comment.