Skip to content

Commit

Permalink
Merge pull request #301 from mydeveloperplanet/issue-300
Browse files Browse the repository at this point in the history
Fix anthrophic models data
  • Loading branch information
stephanj authored Oct 2, 2024
2 parents db80d5d + 1effb84 commit 26a06ef
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private void addAnthropicModels() {
.displayName("Claude 2.1")
.inputCost(8)
.outputCost(24)
.contextWindow(100_000)
.contextWindow(200_000)
.apiKeyUsed(true)
.build());

Expand All @@ -82,10 +82,10 @@ private void addAnthropicModels() {
.apiKeyUsed(true)
.build());

models.put(ModelProvider.Anthropic.getName() + "-" + CLAUDE_3_HAIKU_20240307,
models.put(ModelProvider.Anthropic.getName() + "-" + CLAUDE_3_SONNET_20240229,
LanguageModel.builder()
.provider(ModelProvider.Anthropic)
.modelName(CLAUDE_3_HAIKU_20240307.toString())
.modelName(CLAUDE_3_SONNET_20240229.toString())
.displayName("Claude 3 Sonnet")
.inputCost(3)
.outputCost(15)
Expand Down

0 comments on commit 26a06ef

Please sign in to comment.