Skip to content

Commit

Permalink
feat: add haiku 3.5 model
Browse files Browse the repository at this point in the history
  • Loading branch information
pnd280 committed Nov 5, 2024
1 parent 6be7e0a commit 2c6764b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
6 changes: 6 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ Consider giving a star ⭐ on [Github](https://github.com/pnd280/complexity).

**EXPERIMENTAL** features are subjected to change/removal without prior notice.

## v0.0.5.6

_Release date: 5th Nov, 2024_

- Added `Claude 3.5 Haiku` model.

## v0.0.5.5

_Release date: 1st Nov, 2024_
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "complexity",
"displayName": "Complexity - Perplexity AI Supercharged",
"version": "0.0.5.5",
"version": "0.0.5.6",
"author": "pnd280",
"description": "⚡ Supercharge your Perplexity AI",
"type": "module",
Expand Down
6 changes: 6 additions & 0 deletions src/content-script/components/QueryBox/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ export const languageModels = [
code: "claude2",
provider: "Anthropic",
},
{
label: "Claude 3.5 Haiku",
shortLabel: "Haiku",
code: "claude35haiku",
provider: "Anthropic",
},
{
label: "Claude 3 Opus",
shortLabel: "Opus",
Expand Down
1 change: 1 addition & 0 deletions src/content-script/components/QueryBox/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ type GroupedLanguageModelsByProvider = [

export const languageModelIcons: Record<LanguageModel["code"], ReactNode> = {
claude2: <SiAnthropic />,
claude35haiku: <SiAnthropic />,
claude3opus: <SiAnthropic />,
o1: <AiOutlineOpenAI />,
gpt4o: <AiOutlineOpenAI />,
Expand Down

0 comments on commit 2c6764b

Please sign in to comment.