summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHexye <65314629+HexyeDEV@users.noreply.github.com>2023-10-04 23:00:29 +0200
committerGitHub <noreply@github.com>2023-10-04 23:00:29 +0200
commit3f0a738fe767df94c6e0e6987e00f747c929ae59 (patch)
tree5b9b5dcb805534aaaf2a41a3f97dd91c3f10ed29
parentUpdate README.md (diff)
parentUpdate models.py (diff)
downloadgpt4free-3f0a738fe767df94c6e0e6987e00f747c929ae59.tar
gpt4free-3f0a738fe767df94c6e0e6987e00f747c929ae59.tar.gz
gpt4free-3f0a738fe767df94c6e0e6987e00f747c929ae59.tar.bz2
gpt4free-3f0a738fe767df94c6e0e6987e00f747c929ae59.tar.lz
gpt4free-3f0a738fe767df94c6e0e6987e00f747c929ae59.tar.xz
gpt4free-3f0a738fe767df94c6e0e6987e00f747c929ae59.tar.zst
gpt4free-3f0a738fe767df94c6e0e6987e00f747c929ae59.zip
-rw-r--r--g4f/models.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/g4f/models.py b/g4f/models.py
index 4a6c9faf..07a9b423 100644
--- a/g4f/models.py
+++ b/g4f/models.py
@@ -25,6 +25,7 @@ from .Provider import (
Aibn,
Bing,
H2o,
+ Cromicle,
)
@dataclass(unsafe_hash=True)
@@ -54,7 +55,7 @@ gpt_35_turbo = Model(
name = 'gpt-3.5-turbo',
base_provider = 'openai',
best_provider = RetryProvider([
- DeepAi, ChatgptLogin, ChatgptAi, Aivvm, GptGo, AItianhu, Aichat, AItianhuSpace, Myshell, Aibn, ChatForAi, FreeGpt, Ylokh,
+ DeepAi, ChatgptLogin, ChatgptAi, Aivvm, GptGo, AItianhu, Aichat, AItianhuSpace, Myshell, Aibn, ChatForAi, FreeGpt, Ylokh, Cromicle
])
)