From 8927a0cf79bd43ce1ea7303438eefa2508bb257d Mon Sep 17 00:00:00 2001 From: Zero6992 Date: Wed, 27 Mar 2024 00:18:37 +0800 Subject: fix: Liaobots gpt-4 model name --- g4f/Provider/Liaobots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/g4f/Provider/Liaobots.py b/g4f/Provider/Liaobots.py index b80e46ac..91b6d84f 100644 --- a/g4f/Provider/Liaobots.py +++ b/g4f/Provider/Liaobots.py @@ -24,7 +24,7 @@ models = { "tokenLimit": 126000, "context": "128K", }, - "gpt-4-plus": { + "gpt-4": { "id": "gpt-4-plus", "name": "GPT-4-Plus", "maxLength": 130000, -- cgit v1.2.3 From 2448c32bf9e9f99c9ec4e096f1bf7b3bb854b136 Mon Sep 17 00:00:00 2001 From: Zero6992 Date: Wed, 27 Mar 2024 15:03:09 +0800 Subject: fix: gpt-4-turbo --- g4f/Provider/Liaobots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/g4f/Provider/Liaobots.py b/g4f/Provider/Liaobots.py index 91b6d84f..a16b3cb3 100644 --- a/g4f/Provider/Liaobots.py +++ b/g4f/Provider/Liaobots.py @@ -17,7 +17,7 @@ models = { "tokenLimit": 14000, "context": "16K", }, - "gpt-4-turbo-preview": { + "gpt-4-turbo": { "id": "gpt-4-turbo-preview", "name": "GPT-4-Turbo", "maxLength": 260000, -- cgit v1.2.3