-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(model): Support DeepSeek proxy LLM (#1491)
- Loading branch information
Showing
7 changed files
with
152 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
import os | ||
from typing import TYPE_CHECKING, Any, Dict, Optional, Union, cast | ||
|
||
from dbgpt.core import ModelRequest, ModelRequestContext | ||
from dbgpt.model.proxy.llms.proxy_model import ProxyModel | ||
|
||
from .chatgpt import OpenAILLMClient | ||
|
||
if TYPE_CHECKING: | ||
from httpx._types import ProxiesTypes | ||
from openai import AsyncAzureOpenAI, AsyncOpenAI | ||
|
||
ClientType = Union[AsyncAzureOpenAI, AsyncOpenAI] | ||
|
||
# 32K model | ||
_DEFAULT_MODEL = "deepseek-chat" | ||
|
||
|
||
async def deepseek_generate_stream( | ||
model: ProxyModel, tokenizer, params, device, context_len=2048 | ||
): | ||
client: DeepseekLLMClient = cast(DeepseekLLMClient, model.proxy_llm_client) | ||
context = ModelRequestContext(stream=True, user_name=params.get("user_name")) | ||
request = ModelRequest.build_request( | ||
client.default_model, | ||
messages=params["messages"], | ||
temperature=params.get("temperature"), | ||
context=context, | ||
max_new_tokens=params.get("max_new_tokens"), | ||
) | ||
async for r in client.generate_stream(request): | ||
yield r | ||
|
||
|
||
class DeepseekLLMClient(OpenAILLMClient): | ||
"""Deepseek LLM Client. | ||
Deepseek's API is compatible with OpenAI's API, so we inherit from OpenAILLMClient. | ||
API Reference: https://platform.deepseek.com/api-docs/ | ||
""" | ||
|
||
def __init__( | ||
self, | ||
api_key: Optional[str] = None, | ||
api_base: Optional[str] = None, | ||
api_type: Optional[str] = None, | ||
api_version: Optional[str] = None, | ||
model: Optional[str] = _DEFAULT_MODEL, | ||
proxies: Optional["ProxiesTypes"] = None, | ||
timeout: Optional[int] = 240, | ||
model_alias: Optional[str] = "deepseek_proxyllm", | ||
context_length: Optional[int] = None, | ||
openai_client: Optional["ClientType"] = None, | ||
openai_kwargs: Optional[Dict[str, Any]] = None, | ||
**kwargs, | ||
): | ||
api_base = ( | ||
api_base or os.getenv("DEEPSEEK_API_BASE") or "https://api.deepseek.com/v1" | ||
) | ||
api_key = api_key or os.getenv("DEEPSEEK_API_KEY") | ||
model = model or _DEFAULT_MODEL | ||
if not context_length: | ||
if "deepseek-chat" in model: | ||
context_length = 1024 * 32 | ||
elif "deepseek-coder" in model: | ||
context_length = 1024 * 16 | ||
else: | ||
# 8k | ||
context_length = 1024 * 8 | ||
|
||
if not api_key: | ||
raise ValueError( | ||
"Deepseek API key is required, please set 'DEEPSEEK_API_KEY' in " | ||
"environment variable or pass it to the client." | ||
) | ||
super().__init__( | ||
api_key=api_key, | ||
api_base=api_base, | ||
api_type=api_type, | ||
api_version=api_version, | ||
model=model, | ||
proxies=proxies, | ||
timeout=timeout, | ||
model_alias=model_alias, | ||
context_length=context_length, | ||
openai_client=openai_client, | ||
openai_kwargs=openai_kwargs, | ||
**kwargs, | ||
) | ||
|
||
def check_sdk_version(self, version: str) -> None: | ||
if not version >= "1.0": | ||
raise ValueError( | ||
"Deepseek API requires openai>=1.0, please upgrade it by " | ||
"`pip install --upgrade 'openai>=1.0'`" | ||
) | ||
|
||
@property | ||
def default_model(self) -> str: | ||
model = self._model | ||
if not model: | ||
model = _DEFAULT_MODEL | ||
return model |