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 vllm provider Combine #75

Merged
merged 2 commits into from
Feb 14, 2025
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/features/providerConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ import TencentCloud from '@/TencentCloud';
import Together from '@/Together';
import Upstage from '@/Upstage';
import VertexAI from '@/VertexAI';
import Vllm from '@/Vllm';
import Wenxin from '@/Wenxin';
import WorkersAI from '@/WorkersAI';
import XAI from '@/XAI';
Expand Down Expand Up @@ -192,6 +193,7 @@ export const providerMappings: ProviderMapping[] = [
},
{ Icon: InternLM, combineMultiple: 0.95, keywords: [ModelProvider.InternLM] },
{ Icon: Higress, keywords: [ModelProvider.Higress] },
{ Icon: Vllm, keywords: [ModelProvider.VLLM] },
{ Icon: GiteeAI, combineMultiple: 0.95, keywords: [ModelProvider.GiteeAI] },
{ Icon: ModelScope, combineMultiple: 0.95, keywords: [ModelProvider.ModelScope] },
{ Icon: VertexAI, keywords: [ModelProvider.VertexAI] },
Expand Down
1 change: 1 addition & 0 deletions src/features/providerEnum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ export enum ModelProvider {
TencentCloud = 'tencentcloud',
TogetherAI = 'togetherai',
Upstage = 'upstage',
VLLM = 'vllm',
VertexAI = 'vertexai',
Wenxin = 'wenxin',
XAI = 'xai',
Expand Down