Skip to content

Commit c755f98

Browse files
committed
2 parents f30a61c + c3a231a commit c755f98

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# 🚀 Perplexica - An AI-powered search engine 🔎 <!-- omit in toc -->
22

3+
[![Discord](https://dcbadge.vercel.app/api/server/26aArMy8tT?style=flat&compact=true)](https://discord.gg/26aArMy8tT)
4+
5+
36
![preview](.assets/perplexica-screenshot.png?)
47

58
## Table of Contents <!-- omit in toc -->

src/lib/providers/anthropic.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,20 @@ export const loadAnthropicChatModels = async () => {
99

1010
try {
1111
const chatModels = {
12-
'claude-3-5-sonnet-20240620': {
12+
'claude-3-5-sonnet-20241022': {
1313
displayName: 'Claude 3.5 Sonnet',
1414
model: new ChatAnthropic({
1515
temperature: 0.7,
1616
anthropicApiKey: anthropicApiKey,
17-
model: 'claude-3-5-sonnet-20240620',
17+
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',
1826
}),
1927
},
2028
'claude-3-opus-20240229': {

0 commit comments

Comments
 (0)