Merge branch 'master' into dev
This commit is contained in:
commit
623d3d44ec
|
|
@ -229,7 +229,7 @@ Web UI 可以实现如下功能:
|
||||||
- [x] VUE 前端
|
- [x] VUE 前端
|
||||||
|
|
||||||
## 项目交流群
|
## 项目交流群
|
||||||
<img src="img/qr_code_34.jpg" alt="二维码" width="300" height="300" />
|
<img src="img/qr_code_35.jpg" alt="二维码" width="300" height="300" />
|
||||||
|
|
||||||
|
|
||||||
🎉 langchain-ChatGLM 项目微信交流群,如果你也对本项目感兴趣,欢迎加入群聊参与讨论交流。
|
🎉 langchain-ChatGLM 项目微信交流群,如果你也对本项目感兴趣,欢迎加入群聊参与讨论交流。
|
||||||
|
|
|
||||||
|
|
@ -58,6 +58,12 @@ llm_model_dict = {
|
||||||
"local_model_path": None,
|
"local_model_path": None,
|
||||||
"provides": "ChatGLM"
|
"provides": "ChatGLM"
|
||||||
},
|
},
|
||||||
|
"chatglm2-6b": {
|
||||||
|
"name": "chatglm2-6b",
|
||||||
|
"pretrained_model_name": "THUDM/chatglm2-6b",
|
||||||
|
"local_model_path": None,
|
||||||
|
"provides": "ChatGLM"
|
||||||
|
},
|
||||||
|
|
||||||
"chatyuan": {
|
"chatyuan": {
|
||||||
"name": "chatyuan",
|
"name": "chatyuan",
|
||||||
|
|
@ -86,6 +92,13 @@ llm_model_dict = {
|
||||||
"provides": "FastChatOpenAILLM", # 使用fastchat api时,需保证"provides"为"FastChatOpenAILLM"
|
"provides": "FastChatOpenAILLM", # 使用fastchat api时,需保证"provides"为"FastChatOpenAILLM"
|
||||||
"api_base_url": "http://localhost:8000/v1" # "name"修改为fastchat服务中的"api_base_url"
|
"api_base_url": "http://localhost:8000/v1" # "name"修改为fastchat服务中的"api_base_url"
|
||||||
},
|
},
|
||||||
|
"fastchat-chatglm2-6b": {
|
||||||
|
"name": "chatglm2-6b", # "name"修改为fastchat服务中的"model_name"
|
||||||
|
"pretrained_model_name": "chatglm2-6b",
|
||||||
|
"local_model_path": None,
|
||||||
|
"provides": "FastChatOpenAILLM", # 使用fastchat api时,需保证"provides"为"FastChatOpenAILLM"
|
||||||
|
"api_base_url": "http://localhost:8000/v1" # "name"修改为fastchat服务中的"api_base_url"
|
||||||
|
},
|
||||||
|
|
||||||
# 通过 fastchat 调用的模型请参考如下格式
|
# 通过 fastchat 调用的模型请参考如下格式
|
||||||
"fastchat-vicuna-13b-hf": {
|
"fastchat-vicuna-13b-hf": {
|
||||||
|
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 288 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 193 KiB |
Loading…
Reference in New Issue