We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2c5ca94 + 1c3c689 commit ea74e30Copy full SHA for ea74e30
src/lib/providers/anthropic.ts
@@ -9,12 +9,20 @@ export const loadAnthropicChatModels = async () => {
9
10
try {
11
const chatModels = {
12
- 'claude-3-5-sonnet-20240620': {
+ 'claude-3-5-sonnet-20241022': {
13
displayName: 'Claude 3.5 Sonnet',
14
model: new ChatAnthropic({
15
temperature: 0.7,
16
anthropicApiKey: anthropicApiKey,
17
- model: 'claude-3-5-sonnet-20240620',
+ model: 'claude-3-5-sonnet-20241022',
18
+ }),
19
+ },
20
+ 'claude-3-5-haiku-20241022': {
21
+ displayName: 'Claude 3.5 Haiku',
22
+ model: new ChatAnthropic({
23
+ temperature: 0.7,
24
+ anthropicApiKey: anthropicApiKey,
25
+ model: 'claude-3-5-haiku-20241022',
26
}),
27
},
28
'claude-3-opus-20240229': {
0 commit comments