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

Provider: add deepseek support #359

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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/globals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ export const LINGYI: string = 'lingyi';
export const ZHIPU: string = 'zhipu';
export const NOVITA_AI: string = 'novita-ai';
export const MONSTERAPI: string = 'monsterapi';
export const DEEPSEEK: string = 'deepseek';

export const VALID_PROVIDERS = [
ANTHROPIC,
Expand Down Expand Up @@ -82,6 +83,7 @@ export const VALID_PROVIDERS = [
ZHIPU,
NOVITA_AI,
MONSTERAPI,
DEEPSEEK,
];

export const CONTENT_TYPES = {
Expand Down
18 changes: 18 additions & 0 deletions src/providers/deepseek/api.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { ProviderAPIConfig } from '../types';

const DeepSeekAPIConfig: ProviderAPIConfig = {
getBaseURL: () => 'https://api.deepseek.com',
headers: ({ providerOptions }) => {
return { Authorization: `Bearer ${providerOptions.apiKey}` }; // https://platform.deepseek.com/api_keys
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

comment can be removed

},
getEndpoint: ({ fn }) => {
switch (fn) {
case 'chatComplete':
return '/v1/chat/completions';
default:
return '';
}
},
};

export default DeepSeekAPIConfig;
175 changes: 175 additions & 0 deletions src/providers/deepseek/chatComplete.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,175 @@
import { DEEPSEEK } from '../../globals';

import {
ChatCompletionResponse,
ErrorResponse,
ProviderConfig,
} from '../types';
import {
generateErrorResponse,
generateInvalidProviderResponseError,
} from '../utils';

export const DeepSeekChatCompleteConfig: ProviderConfig = {
model: {
param: 'model',
required: true,
default: 'deepseek-chat',
},
messages: {
param: 'messages',
default: '',
},
max_tokens: {
param: 'max_tokens',
default: 100,
min: 0,
},
temperature: {
param: 'temperature',
default: 1,
min: 0,
max: 2,
},
top_p: {
param: 'top_p',
default: 1,
min: 0,
max: 1,
},
stream: {
param: 'stream',
default: false,
},
frequency_penalty: {
param: 'frequency_penalty',
default: 0,
min: -2,
max: 2,
},
presence_penalty: {
param: 'presence_penalty',
default: 0,
min: -2,
max: 2,
},
stop: {
param: 'stop',
default: null,
},
logprobs: {
param: 'logprobs',
default: false,
},
top_logprobs: {
param: 'top_logprobs',
default: 0,
min: 0,
max: 20,
},
};

interface DeepSeekChatCompleteResponse extends ChatCompletionResponse {
id: string;
object: string;
created: number;
model: 'deepseek-chat' | 'deepseek-coder';
usage: {
prompt_tokens: number;
completion_tokens: number;
total_tokens: number;
};
}

export interface DeepSeekErrorResponse {
object: string;
message: string;
type: string;
param: string | null;
code: string;
}

interface DeepSeekStreamChunk {
id: string;
object: string;
created: number;
model: string;
choices: {
delta: {
role?: string | null;
content?: string;
};
index: number;
finish_reason: string | null;
}[];
}

export const DeepSeekChatCompleteResponseTransform: (
response: DeepSeekChatCompleteResponse | DeepSeekErrorResponse,
responseStatus: number
) => ChatCompletionResponse | ErrorResponse = (response, responseStatus) => {
if ('message' in response && responseStatus !== 200) {
return generateErrorResponse(
{
message: response.message,
type: response.type,
param: response.param,
code: response.code,
},
DEEPSEEK
);
}

if ('choices' in response) {
return {
id: response.id,
object: response.object,
created: response.created,
model: response.model,
provider: DEEPSEEK,
choices: response.choices.map((c) => ({
index: c.index,
message: {
role: c.message.role,
content: c.message.content,
},
finish_reason: c.finish_reason,
})),
usage: {
prompt_tokens: response.usage?.prompt_tokens,
completion_tokens: response.usage?.completion_tokens,
total_tokens: response.usage?.total_tokens,
},
};
}

return generateInvalidProviderResponseError(response, DEEPSEEK);
};

export const DeepSeekChatCompleteStreamChunkTransform: (
response: string
) => string = (responseChunk) => {
let chunk = responseChunk.trim();
chunk = chunk.replace(/^data: /, '');
chunk = chunk.trim();
if (chunk === '[DONE]') {
return `data: ${chunk}\n\n`;
}
const parsedChunk: DeepSeekStreamChunk = JSON.parse(chunk);
return (
`data: ${JSON.stringify({
id: parsedChunk.id,
object: parsedChunk.object,
created: parsedChunk.created,
model: parsedChunk.model,
provider: DEEPSEEK,
choices: [
{
index: parsedChunk.choices[0].index,
delta: parsedChunk.choices[0].delta,
finish_reason: parsedChunk.choices[0].finish_reason,
},
],
})}` + '\n\n'
);
};
18 changes: 18 additions & 0 deletions src/providers/deepseek/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { ProviderConfigs } from '../types';
import DeepSeekAPIConfig from './api';
import {
DeepSeekChatCompleteConfig,
DeepSeekChatCompleteResponseTransform,
DeepSeekChatCompleteStreamChunkTransform,
} from './chatComplete';

const DeepSeekConfig: ProviderConfigs = {
chatComplete: DeepSeekChatCompleteConfig,
api: DeepSeekAPIConfig,
responseTransforms: {
chatComplete: DeepSeekChatCompleteResponseTransform,
'stream-chatComplete': DeepSeekChatCompleteStreamChunkTransform,
},
};

export default DeepSeekConfig;
2 changes: 2 additions & 0 deletions src/providers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import LingYiConfig from './lingyi';
import ZhipuConfig from './zhipu';
import NovitaAIConfig from './novita-ai';
import MonsterAPIConfig from './monsterapi';
import DeepSeekAPIConfig from './deepseek';

const Providers: { [key: string]: ProviderConfigs } = {
openai: OpenAIConfig,
Expand Down Expand Up @@ -59,6 +60,7 @@ const Providers: { [key: string]: ProviderConfigs } = {
zhipu: ZhipuConfig,
'novita-ai': NovitaAIConfig,
monsterapi: MonsterAPIConfig,
deepseek: DeepSeekAPIConfig,
};

export default Providers;