feat: 添加千问模型

This commit is contained in:
Joe Stone 2024-04-26 18:05:16 +08:00 committed by GitHub
parent 4a28005d65
commit 4f78382df4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -73,7 +73,11 @@ model_dict = {
'llama2-chinese:13b': ModelInfo(
'llama2-chinese:13b',
'由于Llama2本身的中文对齐较弱我们采用中文指令集对meta-llama/Llama-2-13b-chat-hf进行LoRA微调使其具备较强的中文对话能力。',
ModelTypeConst.LLM, ollama_llm_model_credential)
ModelTypeConst.LLM, ollama_llm_model_credential),
'qwen-14b': ModelInfo(
'qwen:14b',
'qwen 1.5 14b 相较于以往版本模型与人类偏好的对齐程度以及多语言处理能力上有显著增强。所有规模的模型都支持32768个tokens的上下文长度。',
ModelTypeConst.LLM, ollama_llm_model_credential),
}