From f7c82c13da68d765ebd0a4b5a00a0298fb33023a Mon Sep 17 00:00:00 2001 From: imClumsyPanda Date: Mon, 14 Aug 2023 18:53:22 +0800 Subject: [PATCH] update model_config.py.example --- configs/model_config.py.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/model_config.py.example b/configs/model_config.py.example index 597d4f5..1090f85 100644 --- a/configs/model_config.py.example +++ b/configs/model_config.py.example @@ -78,9 +78,9 @@ llm_model_dict = { # urllib3.exceptions.NewConnectionError: : # Failed to establish a new connection: [WinError 10060] # 则是因为内地和香港的IP都被OPENAI封了,需要切换为日本、新加坡等地 - "openai-chatgpt-3.5": { + "gpt-3.5-turbo": { "local_model_path": "gpt-3.5-turbo", - "api_base_url": "https://api.openapi.com/v1", + "api_base_url": "https://api.openai.com/v1", "api_key": os.environ.get("OPENAI_API_KEY") }, }