mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-16 02:09:40 +00:00
amazon nova support (#1315)
This commit is contained in:
parent
247ee7d3dd
commit
d8c6471c1b
4 changed files with 30 additions and 11 deletions
|
@ -208,6 +208,24 @@ if settings.ENABLE_BEDROCK:
|
|||
add_assistant_prefix=True,
|
||||
),
|
||||
)
|
||||
LLMConfigRegistry.register_config(
|
||||
"BEDROCK_AMAZON_NOVA_PRO",
|
||||
LLMConfig(
|
||||
"bedrock/us.amazon.nova-pro-v1:0",
|
||||
["AWS_REGION"],
|
||||
supports_vision=True,
|
||||
add_assistant_prefix=True,
|
||||
),
|
||||
)
|
||||
LLMConfigRegistry.register_config(
|
||||
"BEDROCK_AMAZON_NOVA_LITE",
|
||||
LLMConfig(
|
||||
"bedrock/us.amazon.nova-lite-v1:0",
|
||||
["AWS_REGION"],
|
||||
supports_vision=True,
|
||||
add_assistant_prefix=True,
|
||||
),
|
||||
)
|
||||
|
||||
|
||||
if settings.ENABLE_AZURE:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue