diff options
author | kqlio67 <kqlio67@users.noreply.github.com> | 2024-11-12 18:24:14 +0100 |
---|---|---|
committer | kqlio67 <kqlio67@users.noreply.github.com> | 2024-11-12 18:24:14 +0100 |
commit | 24f80c5165037963d1e50e1f7a7ac366c60c7e98 (patch) | |
tree | 06216cd0ad9fe25dd13d8f42aedeabf35a151d2e | |
parent | Update (g4f/Provider/Blackbox.py) (diff) | |
download | gpt4free-24f80c5165037963d1e50e1f7a7ac366c60c7e98.tar gpt4free-24f80c5165037963d1e50e1f7a7ac366c60c7e98.tar.gz gpt4free-24f80c5165037963d1e50e1f7a7ac366c60c7e98.tar.bz2 gpt4free-24f80c5165037963d1e50e1f7a7ac366c60c7e98.tar.lz gpt4free-24f80c5165037963d1e50e1f7a7ac366c60c7e98.tar.xz gpt4free-24f80c5165037963d1e50e1f7a7ac366c60c7e98.tar.zst gpt4free-24f80c5165037963d1e50e1f7a7ac366c60c7e98.zip |
-rw-r--r-- | g4f/Provider/Liaobots.py | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/g4f/Provider/Liaobots.py b/g4f/Provider/Liaobots.py index addd3ed7..7ccfa877 100644 --- a/g4f/Provider/Liaobots.py +++ b/g4f/Provider/Liaobots.py @@ -9,15 +9,6 @@ from .helper import get_connector from ..requests import raise_for_status models = { - "gpt-3.5-turbo": { - "id": "gpt-3.5-turbo", - "name": "GPT-3.5-Turbo", - "model": "ChatGPT", - "provider": "OpenAI", - "maxLength": 48000, - "tokenLimit": 14000, - "context": "16K", - }, "gpt-4o-mini-free": { "id": "gpt-4o-mini-free", "name": "GPT-4o-Mini-Free", @@ -179,7 +170,7 @@ class Liaobots(AsyncGeneratorProvider, ProviderModelMixin): working = True supports_message_history = True supports_system_message = True - default_model = "gpt-3.5-turbo" + default_model = "gpt-4o-2024-08-06" models = list(models.keys()) model_aliases = { |