diff options
Diffstat (limited to 'g4f/models.py')
-rw-r--r-- | g4f/models.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/g4f/models.py b/g4f/models.py index ae3d430d..dd2b827d 100644 --- a/g4f/models.py +++ b/g4f/models.py @@ -8,6 +8,7 @@ from .Provider import ( AIChatFree, AiMathGPT, Airforce, + AIUncensored, Allyfy, AmigoChat, Bing, @@ -109,6 +110,7 @@ default = Model( Cloudflare, Editee, AiMathGPT, + AIUncensored, ]) ) @@ -808,7 +810,7 @@ playground_v2_5 = Model( flux = Model( name = 'flux', base_provider = 'Flux AI', - best_provider = IterListProvider([Blackbox, Airforce]) + best_provider = IterListProvider([Blackbox, AIUncensored, Airforce]) ) |