mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-05-01 21:20:19 +00:00
support bedrock sonnet 3.5 inference profile (#1195)
This commit is contained in:
parent
1064a7efdb
commit
675933128c
1 changed files with 19 additions and 0 deletions
|
|
@ -189,6 +189,25 @@ if SettingsManager.get_settings().ENABLE_BEDROCK:
|
|||
add_assistant_prefix=True,
|
||||
),
|
||||
)
|
||||
LLMConfigRegistry.register_config(
|
||||
"BEDROCK_ANTHROPIC_CLAUDE3.5_SONNET_INFERENCE_PROFILE",
|
||||
LLMConfig(
|
||||
"bedrock/us.anthropic.claude-3-5-sonnet-20241022-v2:0",
|
||||
["AWS_REGION"],
|
||||
supports_vision=True,
|
||||
add_assistant_prefix=True,
|
||||
),
|
||||
)
|
||||
LLMConfigRegistry.register_config(
|
||||
"BEDROCK_ANTHROPIC_CLAUDE3.5_SONNET_V1",
|
||||
LLMConfig(
|
||||
"bedrock/anthropic.claude-3-5-sonnet-20240620-v1:0",
|
||||
["AWS_REGION"],
|
||||
supports_vision=True,
|
||||
add_assistant_prefix=True,
|
||||
),
|
||||
)
|
||||
|
||||
|
||||
if SettingsManager.get_settings().ENABLE_AZURE:
|
||||
LLMConfigRegistry.register_config(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue