Skip to content

Commit

Permalink
Moves chat models to BedrockChat provider
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonWeill committed Dec 8, 2023
1 parent 780e3e5 commit f953a76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/jupyter-ai-magics/jupyter_ai_magics/providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -658,8 +658,6 @@ class BedrockProvider(BaseProvider, Bedrock):
"ai21.j2-mid-v1",
"cohere.command-light-text-v14",
"cohere.command-text-v14",
"meta.llama2-13b-chat-v1",
"meta.llama2-70b-chat-v1",
]
model_id_key = "model_id"
pypi_package_deps = ["boto3"]
Expand All @@ -685,6 +683,8 @@ class BedrockChatProvider(BaseProvider, BedrockChat):
"anthropic.claude-v2",
"anthropic.claude-v2:1",
"anthropic.claude-instant-v1",
"meta.llama2-13b-chat-v1",
"meta.llama2-70b-chat-v1",
]
model_id_key = "model_id"
pypi_package_deps = ["boto3"]
Expand Down

0 comments on commit f953a76

Please sign in to comment.