Skip to content

Commit

Permalink
Merge remote-tracking branch 'opensource/main-stable'
Browse files Browse the repository at this point in the history
# Conflicts:
#	src/modules/llms/server/openai/models.data.ts
  • Loading branch information
enricoros committed Oct 29, 2024
2 parents c21833d + 632a4a5 commit 32861ea
Showing 1 changed file with 16 additions and 28 deletions.
44 changes: 16 additions & 28 deletions src/modules/llms/server/anthropic/anthropic.models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,29 @@ export const hardcodedAnthropicModels: (ModelDescriptionSchema & { isLegacy?: bo
// },
// },
{
id: 'claude-3-5-sonnet-20240620',
id: 'claude-3-5-sonnet-20241022',
label: 'Claude 3.5 Sonnet',
created: roundTime('2024-10-22 06:00'),
description: 'Most intelligent Claude model to date',
contextWindow: 200000, // Characters
maxCompletionTokens: 8192,
trainingDataCutoff: 'Apr 2024',
interfaces: [LLM_IF_OAI_Chat, LLM_IF_OAI_Vision],
pricing: { chatIn: 3, chatOut: 15 },
benchmark: { cbaElo: 1269, cbaMmlu: 88.7 }, // moved from 3.5 Sonnet (Previous Version), TO UPDATE!!
},
{
id: 'claude-3-5-sonnet-20240620',
label: 'Claude 3.5 Sonnet (Previous)',
created: roundTime('2024-06-20 06:00'),
description: 'The most intelligent Claude model',
contextWindow: 200000, // Characters
maxCompletionTokens: 8192,
trainingDataCutoff: 'Apr 2024',
interfaces: [LLM_IF_OAI_Chat, LLM_IF_OAI_Vision],
pricing: { chatIn: 3, chatOut: 15 },
benchmark: {
heCode: 92.0,
vqaMmmu: 68.3,
// TODO: Update with official benchmarks when available
cbaElo: 1256 - 1, // Placeholder
cbaMmlu: 86.8 - 1, // Placeholder
},
benchmark: { cbaElo: 1269 - 0.1, cbaMmlu: 88.7 - 0.1 },
hidden: true,
},
// {
// id: 'claude-3.5-haiku', // ...
Expand Down Expand Up @@ -81,6 +88,7 @@ export const hardcodedAnthropicModels: (ModelDescriptionSchema & { isLegacy?: bo
pricing: { chatIn: 3, chatOut: 15 },
benchmark: { cbaElo: 1203, cbaMmlu: 79 },
hidden: true,
isLegacy: true,
},
{
id: 'claude-3-haiku-20240307',
Expand Down Expand Up @@ -131,24 +139,4 @@ export const hardcodedAnthropicModels: (ModelDescriptionSchema & { isLegacy?: bo
pricing: { chatIn: 0.8, chatOut: 2.4 },
hidden: true,
},
// {
// id: 'claude-instant-1.1',
// label: 'Claude Instant 1.1',
// created: roundTime('2023-03-14'),
// description: 'Precise and fast',
// contextWindow: 100000,
// maxCompletionTokens: 2048,
// interfaces: [LLM_IF_OAI_Chat],
// hidden: true,
// },
// {
// id: 'claude-1.3',
// label: 'Claude 1.3',
// created: roundTime('2023-03-14'),
// description: 'Claude 1.3 is the latest version of Claude v1',
// contextWindow: 100000,
// maxCompletionTokens: 4096,
// interfaces: [LLM_IF_OAI_Chat],
// hidden: true,
// },
];

0 comments on commit 32861ea

Please sign in to comment.