diff options
author | Heiner Lohaus <heiner@lohaus.eu> | 2023-09-26 10:03:37 +0200 |
---|---|---|
committer | Heiner Lohaus <heiner@lohaus.eu> | 2023-09-26 10:03:37 +0200 |
commit | 3c2755bc72efa0d8e5d8b2883443530ba67ecad4 (patch) | |
tree | 778a3c87768574ecd5f9a4927fbb58fc4137c32b /g4f/models.py | |
parent | AItianhuSpace Provider with GPT 4 added (diff) | |
download | gpt4free-3c2755bc72efa0d8e5d8b2883443530ba67ecad4.tar gpt4free-3c2755bc72efa0d8e5d8b2883443530ba67ecad4.tar.gz gpt4free-3c2755bc72efa0d8e5d8b2883443530ba67ecad4.tar.bz2 gpt4free-3c2755bc72efa0d8e5d8b2883443530ba67ecad4.tar.lz gpt4free-3c2755bc72efa0d8e5d8b2883443530ba67ecad4.tar.xz gpt4free-3c2755bc72efa0d8e5d8b2883443530ba67ecad4.tar.zst gpt4free-3c2755bc72efa0d8e5d8b2883443530ba67ecad4.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/models.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/g4f/models.py b/g4f/models.py index 23fc8e65..7c2d6822 100644 --- a/g4f/models.py +++ b/g4f/models.py @@ -20,6 +20,8 @@ from .Provider import ( AItianhuSpace, Aichat, Myshell, + Aibn, + ChatgptDuo, ) @dataclass(unsafe_hash=True) @@ -39,7 +41,8 @@ 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, AItianhuSpace, Aichat, Myshell, + ChatgptDuo, # Include search results + DeepAi, ChatgptLogin, ChatgptAi, Aivvm, GptGo, AItianhu, AItianhuSpace, Aichat, Myshell, Aibn, ]) ) @@ -48,7 +51,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, + DeepAi, ChatgptLogin, ChatgptAi, Aivvm, GptGo, AItianhu, Aichat, AItianhuSpace, Myshell, Aibn, ]) ) @@ -56,7 +59,7 @@ gpt_4 = Model( name = 'gpt-4', base_provider = 'openai', best_provider = RetryProvider([ - Aivvm, Myshell, AItianhuSpace, + Myshell, AItianhuSpace, ]) ) |