Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Claude 3.5 Sonnet (20240620) #2763

Merged
merged 2 commits into from
Jun 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/helm/config/model_deployments.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,13 @@ model_deployments:
client_spec:
class_name: "helm.clients.anthropic_client.AnthropicMessagesClient"

- name: anthropic/claude-3-5-sonnet-20240620
model_name: anthropic/claude-3-5-sonnet-20240620
tokenizer_name: anthropic/claude
max_sequence_length: 200000
client_spec:
class_name: "helm.clients.anthropic_client.AnthropicMessagesClient"

- name: anthropic/stanford-online-all-v4-s3
deprecated: true # Closed model, not accessible via API
model_name: anthropic/stanford-online-all-v4-s3
Expand Down
8 changes: 8 additions & 0 deletions src/helm/config/model_metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,14 @@ models:
release_date: 2024-03-04 # https://www.anthropic.com/news/claude-3-family
tags: [ANTHROPIC_CLAUDE_3_MODEL_TAG, TEXT_MODEL_TAG, VISION_LANGUAGE_MODEL_TAG, LIMITED_FUNCTIONALITY_TEXT_MODEL_TAG, INSTRUCTION_FOLLOWING_MODEL_TAG]

- name: anthropic/claude-3-5-sonnet-20240620
display_name: Claude 3.5 Sonnet (20240620)
description: Claude 3.5 Sonnet is a Claude 3 family model which outperforms Claude 3 Opus while operating faster and at a lower cost. ([blog](https://www.anthropic.com/news/claude-3-5-sonnet))
creator_organization_name: Anthropic
access: limited
release_date: 2024-06-20
tags: [ANTHROPIC_CLAUDE_3_MODEL_TAG, TEXT_MODEL_TAG, VISION_LANGUAGE_MODEL_TAG, LIMITED_FUNCTIONALITY_TEXT_MODEL_TAG, INSTRUCTION_FOLLOWING_MODEL_TAG]

# DEPRECATED: Please do not use.
- name: anthropic/stanford-online-all-v4-s3
display_name: Anthropic-LM v4-s3 (52B)
Expand Down