diff options
author | Tekky <98614666+xtekky@users.noreply.github.com> | 2023-09-26 01:20:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-26 01:20:27 +0200 |
commit | fd5d28cf7b936855b36b540bb589219b84eea376 (patch) | |
tree | 65f3b7b5c3a15d4681cf07d1bb120489d61072b7 /g4f/models.py | |
parent | Merge pull request #940 from hlohaus/myshell (diff) | |
parent | AItianhuSpace Provider with GPT 4 added (diff) | |
download | gpt4free-fd5d28cf7b936855b36b540bb589219b84eea376.tar gpt4free-fd5d28cf7b936855b36b540bb589219b84eea376.tar.gz gpt4free-fd5d28cf7b936855b36b540bb589219b84eea376.tar.bz2 gpt4free-fd5d28cf7b936855b36b540bb589219b84eea376.tar.lz gpt4free-fd5d28cf7b936855b36b540bb589219b84eea376.tar.xz gpt4free-fd5d28cf7b936855b36b540bb589219b84eea376.tar.zst gpt4free-fd5d28cf7b936855b36b540bb589219b84eea376.zip |
Diffstat (limited to 'g4f/models.py')
-rw-r--r-- | g4f/models.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/g4f/models.py b/g4f/models.py index 5cf8d9e9..23fc8e65 100644 --- a/g4f/models.py +++ b/g4f/models.py @@ -17,6 +17,7 @@ from .Provider import ( Wewordle, Yqcloud, AItianhu, + AItianhuSpace, Aichat, Myshell, ) @@ -38,7 +39,7 @@ default = Model( Wewordle, # Responds with markdown Yqcloud, # Answers short questions in chinese ChatBase, # Don't want to answer creatively - DeepAi, ChatgptLogin, ChatgptAi, Aivvm, GptGo, AItianhu, Aichat, Myshell, + DeepAi, ChatgptLogin, ChatgptAi, Aivvm, GptGo, AItianhu, AItianhuSpace, Aichat, Myshell, ]) ) @@ -47,7 +48,7 @@ gpt_35_turbo = Model( name = 'gpt-3.5-turbo', base_provider = 'openai', best_provider = RetryProvider([ - DeepAi, ChatgptLogin, ChatgptAi, Aivvm, GptGo, AItianhu, Aichat, Myshell, + DeepAi, ChatgptLogin, ChatgptAi, Aivvm, GptGo, AItianhu, Aichat, AItianhuSpace, Myshell, ]) ) @@ -55,7 +56,7 @@ gpt_4 = Model( name = 'gpt-4', base_provider = 'openai', best_provider = RetryProvider([ - Aivvm, Myshell + Aivvm, Myshell, AItianhuSpace, ]) ) |