-
Notifications
You must be signed in to change notification settings - Fork 2k
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 siliconflow models (#2157)
- Loading branch information
Showing
5 changed files
with
129 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
import os | ||
from typing import TYPE_CHECKING, Any, Dict, Optional, Union | ||
|
||
from dbgpt.model.proxy.llms.proxy_model import ProxyModel, parse_model_request | ||
|
||
from .chatgpt import OpenAILLMClient | ||
|
||
if TYPE_CHECKING: | ||
from httpx._types import ProxiesTypes | ||
from openai import AsyncAzureOpenAI, AsyncOpenAI | ||
|
||
ClientType = Union[AsyncAzureOpenAI, AsyncOpenAI] | ||
|
||
|
||
_SILICON_FLOW_DEFAULT_MODEL = "Qwen/Qwen2.5-Coder-32B-Instruct" | ||
|
||
|
||
async def silicon_flow_generate_stream( | ||
model: ProxyModel, tokenizer, params, device, context_len=2048 | ||
): | ||
client: SiliconFlowLLMClient = model.proxy_llm_client | ||
request = parse_model_request(params, client.default_model, stream=True) | ||
async for r in client.generate_stream(request): | ||
yield r | ||
|
||
|
||
class SiliconFlowLLMClient(OpenAILLMClient): | ||
"""SiliconFlow LLM Client. | ||
SiliconFlow's API is compatible with OpenAI's API, so we inherit from OpenAILLMClient. | ||
""" | ||
|
||
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] = None, | ||
proxies: Optional["ProxiesTypes"] = None, | ||
timeout: Optional[int] = 240, | ||
model_alias: Optional[str] = "silicon_flow_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("SILICON_FLOW_API_BASE") | ||
or "https://api.siliconflow.cn/v1" | ||
) | ||
api_key = api_key or os.getenv("SILICON_FLOW_API_KEY") | ||
model = model or _SILICON_FLOW_DEFAULT_MODEL | ||
if not context_length: | ||
if "200k" in model: | ||
context_length = 200 * 1024 | ||
else: | ||
context_length = 4096 | ||
|
||
if not api_key: | ||
raise ValueError( | ||
"SiliconFlow API key is required, please set 'SILICON_FLOW_API_KEY' in environment " | ||
"or pass it as an argument." | ||
) | ||
|
||
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 | ||
) | ||
|
||
@property | ||
def default_model(self) -> str: | ||
model = self._model | ||
if not model: | ||
model = _SILICON_FLOW_DEFAULT_MODEL | ||
return model |