Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ItzCrazyKns committed Dec 18, 2024
2 parents f30a61c + c3a231a commit c755f98
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# 🚀 Perplexica - An AI-powered search engine 🔎 <!-- omit in toc -->

[![Discord](https://dcbadge.vercel.app/api/server/26aArMy8tT?style=flat&compact=true)](https://discord.gg/26aArMy8tT)


![preview](.assets/perplexica-screenshot.png?)

## Table of Contents <!-- omit in toc -->
Expand Down
12 changes: 10 additions & 2 deletions src/lib/providers/anthropic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,20 @@ export const loadAnthropicChatModels = async () => {

try {
const chatModels = {
'claude-3-5-sonnet-20240620': {
'claude-3-5-sonnet-20241022': {
displayName: 'Claude 3.5 Sonnet',
model: new ChatAnthropic({
temperature: 0.7,
anthropicApiKey: anthropicApiKey,
model: 'claude-3-5-sonnet-20240620',
model: 'claude-3-5-sonnet-20241022',
}),
},
'claude-3-5-haiku-20241022': {
displayName: 'Claude 3.5 Haiku',
model: new ChatAnthropic({
temperature: 0.7,
anthropicApiKey: anthropicApiKey,
model: 'claude-3-5-haiku-20241022',
}),
},
'claude-3-opus-20240229': {
Expand Down

0 comments on commit c755f98

Please sign in to comment.