Skip to content

Commit afbb186

Browse files
aws-rafamskrokoko
andauthored
feat(bedrock): add claude 3.5 haiku (#785)
* fix(bedrock):add model --------- Signed-off-by: Rafael Mosca <[email protected]> Co-authored-by: Alain Krok <[email protected]>
1 parent 4ee2eeb commit afbb186

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

apidocs/namespaces/bedrock/classes/BedrockFoundationModel.md

+6
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,12 @@ can instantiate a `BedrockFoundationModel` object, e.g: `new BedrockFoundationMo
6565
6666
***
6767

68+
### ANTHROPIC\_CLAUDE\_3\_5\_HAIKU\_V1\_0
69+
70+
> `readonly` `static` **ANTHROPIC\_CLAUDE\_3\_5\_HAIKU\_V1\_0**: [`BedrockFoundationModel`](BedrockFoundationModel.md)
71+
72+
***
73+
6874
### ANTHROPIC\_CLAUDE\_3\_5\_SONNET\_V1\_0
6975

7076
> `readonly` `static` **ANTHROPIC\_CLAUDE\_3\_5\_SONNET\_V1\_0**: [`BedrockFoundationModel`](BedrockFoundationModel.md)

src/cdk-lib/bedrock/models.ts

+4
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ export class BedrockFoundationModel {
5959
'amazon.titan-text-express-v1',
6060
{ supportsAgents: true },
6161
);
62+
public static readonly ANTHROPIC_CLAUDE_3_5_HAIKU_V1_0 = new BedrockFoundationModel(
63+
'anthropic.claude-3-5-haiku-20241022-v1:0',
64+
{ supportsAgents: true },
65+
);
6266
public static readonly ANTHROPIC_CLAUDE_3_5_SONNET_V2_0 = new BedrockFoundationModel(
6367
'anthropic.claude-3-5-sonnet-20241022-v2:0',
6468
{ supportsAgents: true },

0 commit comments

Comments
 (0)