diff options
author | kqlio67 <166700875+kqlio67@users.noreply.github.com> | 2024-07-27 15:20:20 +0200 |
---|---|---|
committer | kqlio67 <166700875+kqlio67@users.noreply.github.com> | 2024-07-27 15:20:20 +0200 |
commit | 5141e6238c9178facbd06af9c1bef1050bfcbe3d (patch) | |
tree | c0d439e9ff073e54c53d32f1f097f09aa9fb9166 | |
parent | Update g4f/models.py g4f/Provider/needs_auth/OpenaiChat.py (diff) | |
download | gpt4free-5141e6238c9178facbd06af9c1bef1050bfcbe3d.tar gpt4free-5141e6238c9178facbd06af9c1bef1050bfcbe3d.tar.gz gpt4free-5141e6238c9178facbd06af9c1bef1050bfcbe3d.tar.bz2 gpt4free-5141e6238c9178facbd06af9c1bef1050bfcbe3d.tar.lz gpt4free-5141e6238c9178facbd06af9c1bef1050bfcbe3d.tar.xz gpt4free-5141e6238c9178facbd06af9c1bef1050bfcbe3d.tar.zst gpt4free-5141e6238c9178facbd06af9c1bef1050bfcbe3d.zip |
-rw-r--r-- | g4f/models.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/g4f/models.py b/g4f/models.py index 162182bd..cf1e93c3 100644 --- a/g4f/models.py +++ b/g4f/models.py @@ -136,7 +136,7 @@ gpt_4 = Model( name = 'gpt-4', base_provider = 'openai', best_provider = IterListProvider([ - Bing, Liaobots, Chatgpt4Online + Bing, Chatgpt4Online ]) ) @@ -161,7 +161,9 @@ gpt_4_32k_0613 = Model( gpt_4_turbo = Model( name = 'gpt-4-turbo', base_provider = 'openai', - best_provider = Bing + best_provider = IterListProvider([ + Bing, Liaobots + ]) ) gpt_4o = Model( |