-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Expand file tree
/
Copy pathllm.py
More file actions
23 lines (17 loc) · 755 Bytes
/
llm.py
File metadata and controls
23 lines (17 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding=utf-8
from typing import Dict
from models_provider.base_model_provider import MaxKBBaseModel
from models_provider.impl.base_chat_open_ai import BaseChatOpenAI
class MiniMaxChatModel(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)
return MiniMaxChatModel(
model=model_name,
openai_api_base=model_credential.get('api_base') or 'https://api.minimax.io/v1',
openai_api_key=model_credential.get('api_key'),
extra_body=optional_params
)