diff options
author | Heiner Lohaus <heiner@lohaus.eu> | 2023-09-26 01:02:02 +0200 |
---|---|---|
committer | Heiner Lohaus <heiner@lohaus.eu> | 2023-09-26 01:02:02 +0200 |
commit | 72c3ff7a25630582844cdd6a82055fdd2aff6c60 (patch) | |
tree | 1a31086e1f8240f9bd67d3a16afc54753a8f5f93 /g4f/models.py | |
parent | "create_async" support for BaseProvider, (diff) | |
download | gpt4free-72c3ff7a25630582844cdd6a82055fdd2aff6c60.tar gpt4free-72c3ff7a25630582844cdd6a82055fdd2aff6c60.tar.gz gpt4free-72c3ff7a25630582844cdd6a82055fdd2aff6c60.tar.bz2 gpt4free-72c3ff7a25630582844cdd6a82055fdd2aff6c60.tar.lz gpt4free-72c3ff7a25630582844cdd6a82055fdd2aff6c60.tar.xz gpt4free-72c3ff7a25630582844cdd6a82055fdd2aff6c60.tar.zst gpt4free-72c3ff7a25630582844cdd6a82055fdd2aff6c60.zip |
Diffstat (limited to '')
-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, ]) ) |