Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

πŸ’„ style: add Hunyuan provider icon #42

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/ProviderCombine/const.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import Github from '@/Github';
import Google from '@/Google';
import Groq from '@/Groq';
import Hunyuan from '@/Hunyuan';

Check warning on line 21 in src/ProviderCombine/const.tsx

View check run for this annotation

Codecov / codecov/patch

src/ProviderCombine/const.tsx#L21

Added line #L21 was not covered by tests
import LobeHub from '@/LobeHub';
import Minimax from '@/Minimax';
import Mistral from '@/Mistral';
Expand Down Expand Up @@ -143,4 +144,5 @@
{ Icon: Upstage.Combine, keywords: [ModelProvider.Upstage], multiple: 0.9 },
{ Icon: Ai21.Combine, keywords: [ModelProvider.Ai21], multiple: 0.9 },
{ Icon: Github.Combine, keywords: [ModelProvider.Github], multiple: 0.95 },
{ Icon: Hunyuan.Combine, keywords: [ModelProvider.Hunyuan], multiple: 0.9 },

Check warning on line 147 in src/ProviderCombine/const.tsx

View check run for this annotation

Codecov / codecov/patch

src/ProviderCombine/const.tsx#L147

Added line #L147 was not covered by tests
];
3 changes: 3 additions & 0 deletions src/ProviderIcon/const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import Github from '@/Github';
import Google from '@/Google';
import Groq from '@/Groq';
import Hunyuan from '@/Hunyuan';

Check warning on line 16 in src/ProviderIcon/const.ts

View check run for this annotation

Codecov / codecov/patch

src/ProviderIcon/const.ts#L16

Added line #L16 was not covered by tests
import type { IconAvatarProps } from '@/IconAvatar';
import type { IconCombineProps } from '@/IconCombine';
import LobeHub from '@/LobeHub';
Expand Down Expand Up @@ -62,6 +63,7 @@
Github = 'github',
Google = 'google',
Groq = 'groq',
Hunyuan = 'hunyuan',

Check warning on line 66 in src/ProviderIcon/const.ts

View check run for this annotation

Codecov / codecov/patch

src/ProviderIcon/const.ts#L66

Added line #L66 was not covered by tests
LobeHub = 'lobehub',
Minimax = 'minimax',
Mistral = 'mistral',
Expand Down Expand Up @@ -115,4 +117,5 @@
{ Icon: Ai21, keywords: [ModelProvider.Ai21] },
{ Icon: Github, keywords: [ModelProvider.Github] },
{ Icon: Doubao, keywords: [ModelProvider.Doubao] },
{ Icon: Hunyuan, keywords: [ModelProvider.Hunyuan] },

Check warning on line 120 in src/ProviderIcon/const.ts

View check run for this annotation

Codecov / codecov/patch

src/ProviderIcon/const.ts#L120

Added line #L120 was not covered by tests
];
Loading