Skip to content

Commit

Permalink
feat: add support for APAC claude 3 profiles (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
KAEYL98 authored Nov 7, 2024
1 parent 5f76766 commit 11a31b5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/api/models/bedrock.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,24 @@ class BedrockModel(BaseChatModel):
"tool_call": True,
"stream_tool_call": False,
},
"apac.anthropic.claude-3-sonnet-20240229-v1:0": {
"system": True,
"multimodal": True,
"tool_call": True,
"stream_tool_call": True,
},
"apac.anthropic.claude-3-haiku-20240307-v1:0": {
"system": True,
"multimodal": True,
"tool_call": True,
"stream_tool_call": True,
},
"apac.anthropic.claude-3-5-sonnet-20240620-v1:0": {
"system": True,
"multimodal": True,
"tool_call": True,
"stream_tool_call": True,
},
# claude 3 Haiku cross-region inference profile
"us.anthropic.claude-3-haiku-20240307-v1:0": {
"system": True,
Expand Down

0 comments on commit 11a31b5

Please sign in to comment.