Skip to content

Commit

Permalink
Add Anthropic Sonnet 3.5 (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
svilupp committed Jun 20, 2024
1 parent cc94ca8 commit da4089f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

## [0.33.0]

### Added
- Added registry record for Anthropic Claude 3.5 Sonnet with ID `claude-3-5-sonnet-20240620` (read the [blog post](https://www.anthropic.com/news/claude-3-5-sonnet)). Aliases "claude" and "claudes" have been linked to this latest Sonnet model.

## [0.32.0]

### Updated
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PromptingTools"
uuid = "670122d1-24a8-4d70-bfce-740807c42192"
authors = ["J S @svilupp and contributors"]
version = "0.32.0"
version = "0.33.0"

[deps]
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
Expand Down
9 changes: 7 additions & 2 deletions src/user_preferences.jl
Original file line number Diff line number Diff line change
Expand Up @@ -350,9 +350,9 @@ aliases = merge(
"mistralc" => "codestral-latest",
"codestral" => "codestral-latest",
## Default to Sonnet as a the medium offering
"claude" => "claude-3-sonnet-20240229",
"claude" => "claude-3-5-sonnet-20240620",
"claudeo" => "claude-3-opus-20240229",
"claudes" => "claude-3-sonnet-20240229",
"claudes" => "claude-3-5-sonnet-20240620",
"claudeh" => "claude-3-haiku-20240307",
## Groq
"gllama3" => "llama3-8b-8192",
Expand Down Expand Up @@ -653,6 +653,11 @@ registry = Dict{String, ModelSpec}(
9e-7,
"Meta Llama3 70b from Mistral, hosted by Together.ai. For more information, see [models](https://docs.together.ai/docs/inference-models)."),
### Anthropic models
"claude-3-5-sonnet-20240620" => ModelSpec("claude-3-5-sonnet-20240620",
AnthropicSchema(),
3e-6,
1.5e-5,
"Anthropic's latest and strongest model Claude 3 Sonent 3.5. Max output 4096 tokens, 200K context. See details [here](https://docs.anthropic.com/claude/docs/models-overview)"),
"claude-3-opus-20240229" => ModelSpec("claude-3-opus-20240229",
AnthropicSchema(),
1.5e-5,
Expand Down
2 changes: 1 addition & 1 deletion test/llm_anthropic.jl
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ end
@test msg == expected_output
@test schema2.inputs.system == "Act as a helpful AI assistant"
@test schema2.inputs.messages == [Dict("role" => "user", "content" => "Hello World")]
@test schema2.model_id == "claude-3-sonnet-20240229"
@test schema2.model_id == "claude-3-5-sonnet-20240620"
end

@testset "aiextract-Anthropic" begin
Expand Down

2 comments on commit da4089f

@svilupp
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

Added

  • Added registry record for Anthropic Claude 3.5 Sonnet with ID claude-3-5-sonnet-20240620 (read the blog post). Aliases "claude" and "claudes" have been linked to this latest Sonnet model.

Commits

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/109455

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.33.0 -m "<description of version>" da4089f8f6a07f8616f5f799404024923f11f16e
git push origin v0.33.0

Please sign in to comment.