summaryrefslogtreecommitdiffstats
path: root/g4f/models.py
diff options
context:
space:
mode:
authorHeiner Lohaus <hlohaus@users.noreply.github.com>2023-11-12 18:03:04 +0100
committerHeiner Lohaus <hlohaus@users.noreply.github.com>2023-11-12 18:03:04 +0100
commit2fb932220daccc08d25da1ee558fe975cf016b3a (patch)
tree30bd52159f23963731f9c634b6d0150ef042e5b6 /g4f/models.py
parentAdd auto_continue to OpenaiChat (diff)
downloadgpt4free-2fb932220daccc08d25da1ee558fe975cf016b3a.tar
gpt4free-2fb932220daccc08d25da1ee558fe975cf016b3a.tar.gz
gpt4free-2fb932220daccc08d25da1ee558fe975cf016b3a.tar.bz2
gpt4free-2fb932220daccc08d25da1ee558fe975cf016b3a.tar.lz
gpt4free-2fb932220daccc08d25da1ee558fe975cf016b3a.tar.xz
gpt4free-2fb932220daccc08d25da1ee558fe975cf016b3a.tar.zst
gpt4free-2fb932220daccc08d25da1ee558fe975cf016b3a.zip
Diffstat (limited to 'g4f/models.py')
-rw-r--r--g4f/models.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/g4f/models.py b/g4f/models.py
index 7e9351b8..0ce7b886 100644
--- a/g4f/models.py
+++ b/g4f/models.py
@@ -5,7 +5,6 @@ from .Provider import BaseProvider, RetryProvider
from .Provider import (
GptForLove,
ChatgptAi,
- GptChatly,
DeepInfra,
ChatgptX,
ChatBase,
@@ -13,10 +12,12 @@ from .Provider import (
FakeGpt,
FreeGpt,
NoowAi,
+ Berlin,
Llama2,
Vercel,
Aichat,
GPTalk,
+ Koala,
AiAsk,
GptGo,
Phind,
@@ -51,10 +52,9 @@ gpt_35_long = Model(
name = 'gpt-3.5-turbo',
base_provider = 'openai',
best_provider = RetryProvider([
- AiAsk, Aichat, FreeGpt, You,
- GptChatly, GptForLove,
- NoowAi, GeekGpt, Phind,
- FakeGpt
+ FreeGpt, You,
+ GeekGpt, FakeGpt,
+ Berlin, Koala
])
)