Skip to content

Commit

Permalink
Update anthropic.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
LovelyGuYiMeng authored Sep 12, 2024
1 parent 483f916 commit b9814ff
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions src/config/modelProviders/anthropic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,34 +4,35 @@ const Anthropic: ModelProviderCard = {
chatModels: [
{
description:
'Claude 3.5 Sonnet raises the industry bar for intelligence, outperforming competitor models and Claude 3 Opus on a wide range of evaluations, with the speed and cost of our mid-tier model, Claude 3 Sonnet.',
displayName: 'Claude 3.5 Sonnet',
'Fastest and most compact model for near-instant responsiveness. Quick and accurate targeted performance',
displayName: 'Claude 3 Haiku',
enabled: true,
functionCall: true,
id: 'claude-3-5-sonnet-20240620',
maxOutput: 8192,
id: 'claude-3-haiku-20240307',
maxOutput: 4096,
pricing: {
cachedInput: 0.3,
input: 3,
output: 15,
writeCacheInput: 3.75,
input: 0.25,
output: 1.25,
},
releasedAt: '2024-06-20',
releasedAt: '2024-03-07',
tokens: 200_000,
vision: true,
},
{
description:
'Ideal balance of intelligence and speed for enterprise workloads. Maximum utility at a lower price, dependable, balanced for scaled deployments',
displayName: 'Claude 3 Sonnet',
'Claude 3.5 Sonnet raises the industry bar for intelligence, outperforming competitor models and Claude 3 Opus on a wide range of evaluations, with the speed and cost of our mid-tier model, Claude 3 Sonnet.',
displayName: 'Claude 3.5 Sonnet',
enabled: true,
functionCall: true,
id: 'claude-3-sonnet-20240229',
maxOutput: 4096,
id: 'claude-3-5-sonnet-20240620',
maxOutput: 8192,
pricing: {
cachedInput: 0.3,
input: 3,
output: 15,
writeCacheInput: 3.75,
},
releasedAt: '2024-02-29',
releasedAt: '2024-06-20',
tokens: 200_000,
vision: true,
},
Expand All @@ -53,17 +54,16 @@ const Anthropic: ModelProviderCard = {
},
{
description:
'Fastest and most compact model for near-instant responsiveness. Quick and accurate targeted performance',
displayName: 'Claude 3 Haiku',
enabled: true,
'Ideal balance of intelligence and speed for enterprise workloads. Maximum utility at a lower price, dependable, balanced for scaled deployments',
displayName: 'Claude 3 Sonnet',
functionCall: true,
id: 'claude-3-haiku-20240307',
id: 'claude-3-sonnet-20240229',
maxOutput: 4096,
pricing: {
input: 0.25,
output: 1.25,
input: 3,
output: 15,
},
releasedAt: '2024-03-07',
releasedAt: '2024-02-29',
tokens: 200_000,
vision: true,
},
Expand Down

0 comments on commit b9814ff

Please sign in to comment.