Skip to content

Commit 2c6764b

Browse files
committed
feat: add haiku 3.5 model
1 parent 6be7e0a commit 2c6764b

File tree

4 files changed

+14
-1
lines changed

4 files changed

+14
-1
lines changed

docs/changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ Consider giving a star ⭐ on [Github](https://github.com/pnd280/complexity).
1010

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

13+
## v0.0.5.6
14+
15+
_Release date: 5th Nov, 2024_
16+
17+
- Added `Claude 3.5 Haiku` model.
18+
1319
## v0.0.5.5
1420

1521
_Release date: 1st Nov, 2024_

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "complexity",
33
"displayName": "Complexity - Perplexity AI Supercharged",
4-
"version": "0.0.5.5",
4+
"version": "0.0.5.6",
55
"author": "pnd280",
66
"description": "⚡ Supercharge your Perplexity AI",
77
"type": "module",

src/content-script/components/QueryBox/consts.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ export const languageModels = [
88
code: "claude2",
99
provider: "Anthropic",
1010
},
11+
{
12+
label: "Claude 3.5 Haiku",
13+
shortLabel: "Haiku",
14+
code: "claude35haiku",
15+
provider: "Anthropic",
16+
},
1117
{
1218
label: "Claude 3 Opus",
1319
shortLabel: "Opus",

src/content-script/components/QueryBox/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ type GroupedLanguageModelsByProvider = [
3535

3636
export const languageModelIcons: Record<LanguageModel["code"], ReactNode> = {
3737
claude2: <SiAnthropic />,
38+
claude35haiku: <SiAnthropic />,
3839
claude3opus: <SiAnthropic />,
3940
o1: <AiOutlineOpenAI />,
4041
gpt4o: <AiOutlineOpenAI />,

0 commit comments

Comments
 (0)