Adding the Minimax model (#1009)

### What problem does this PR solve?

Added support for MiniMax LLM

### Type of change

- [x] New Feature (non-breaking change which adds functionality)

---------

Co-authored-by: cecilia-uu <konghui1996@163.com>
This commit is contained in:
cecilia-uu
2024-05-31 16:38:53 +08:00
committed by GitHub
parent 5d2f7136dd
commit 260c68f60c
3 changed files with 58 additions and 1 deletions

View File

@ -51,7 +51,8 @@ ChatModel = {
"Xinference": XinferenceChat,
"Moonshot": MoonshotChat,
"DeepSeek": DeepSeekChat,
"BaiChuan": BaiChuanChat
"BaiChuan": BaiChuanChat,
"MiniMax": MiniMaxChat
}