Skip to content

Commit 6eff956

Browse files
authored
Merge pull request #859 from awslabs/nova-cris-bug
fix(bedrock): update nova models cris
2 parents 7b73cdb + b01b88f commit 6eff956

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/cdk-lib/bedrock/models.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -76,17 +76,17 @@ export class BedrockFoundationModel implements IInvokable {
7676
supportsAgents: true,
7777
});
7878

79-
public static readonly AMAZON_NOVA_MICRO_V1 = new BedrockFoundationModel('amazon.nova-micro-v1:0', {
80-
supportsAgents: true,
81-
});
79+
public static readonly AMAZON_NOVA_MICRO_V1 = new BedrockFoundationModel('amazon.nova-micro-v1:0',
80+
{ supportsAgents: true, supportsCrossRegion: true },
81+
);
8282

83-
public static readonly AMAZON_NOVA_LITE_V1 = new BedrockFoundationModel('amazon.nova-lite-v1:0', {
84-
supportsAgents: true,
85-
});
83+
public static readonly AMAZON_NOVA_LITE_V1 = new BedrockFoundationModel('amazon.nova-lite-v1:0',
84+
{ supportsAgents: true, supportsCrossRegion: true },
85+
);
8686

87-
public static readonly AMAZON_NOVA_PRO_V1 = new BedrockFoundationModel('amazon.nova-pro-v1:0', {
88-
supportsAgents: true,
89-
});
87+
public static readonly AMAZON_NOVA_PRO_V1 = new BedrockFoundationModel('amazon.nova-pro-v1:0',
88+
{ supportsAgents: true, supportsCrossRegion: true },
89+
);
9090

9191
public static readonly TITAN_EMBED_TEXT_V1 = new BedrockFoundationModel('amazon.titan-embed-text-v1', {
9292
supportsKnowledgeBase: true,

0 commit comments

Comments
 (0)