From 3504cb5274a2a7a5feeac436bfc2cce4b8bbe53c Mon Sep 17 00:00:00 2001 From: imClumsyPanda Date: Wed, 23 Aug 2023 23:04:13 +0800 Subject: [PATCH] update model_config.py.example --- configs/model_config.py.example | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/configs/model_config.py.example b/configs/model_config.py.example index 3d9e02f..73d29b7 100644 --- a/configs/model_config.py.example +++ b/configs/model_config.py.example @@ -43,12 +43,6 @@ llm_model_dict = { "api_key": "EMPTY" }, - "chatglm-6b-int4": { - "local_model_path": "THUDM/chatglm-6b-int4", - "api_base_url": "http://localhost:8888/v1", # "name"修改为fastchat服务中的"api_base_url" - "api_key": "EMPTY" - }, - "chatglm2-6b": { "local_model_path": "THUDM/chatglm2-6b", "api_base_url": "http://localhost:8888/v1", # URL需要与运行fastchat服务端的server_config.FSCHAT_OPENAI_API一致 @@ -61,12 +55,6 @@ llm_model_dict = { "api_key": "EMPTY" }, - "vicuna-13b-hf": { - "local_model_path": "", - "api_base_url": "http://localhost:8888/v1", # "name"修改为fastchat服务中的"api_base_url" - "api_key": "EMPTY" - }, - # 调用chatgpt时如果报出: urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='api.openai.com', port=443): # Max retries exceeded with url: /v1/chat/completions # 则需要将urllib3版本修改为1.25.11