mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-28 05:42:51 +00:00
32 lines
903 B
Python
32 lines
903 B
Python
#!/usr/bin/env python
|
||
# -*- coding: UTF-8 -*-
|
||
"""
|
||
@Project :MaxKB
|
||
@File :llm.py
|
||
@Author :Brian Yang
|
||
@Date :5/12/24 7:44 AM
|
||
"""
|
||
from typing import Dict
|
||
|
||
from models_provider.base_model_provider import MaxKBBaseModel
|
||
from models_provider.impl.base_chat_open_ai import BaseChatOpenAI
|
||
|
||
|
||
class DeepSeekChatModel(MaxKBBaseModel, BaseChatOpenAI):
|
||
|
||
@staticmethod
|
||
def is_cache_model():
|
||
return False
|
||
|
||
@staticmethod
|
||
def new_instance(model_type, model_name, model_credential: Dict[str, object], **model_kwargs):
|
||
optional_params = MaxKBBaseModel.filter_optional_params(model_kwargs)
|
||
|
||
deepseek_chat_open_ai = DeepSeekChatModel(
|
||
model=model_name,
|
||
openai_api_base='https://api.deepseek.com',
|
||
openai_api_key=model_credential.get('api_key'),
|
||
extra_body=optional_params
|
||
)
|
||
return deepseek_chat_open_ai
|