diff options
author | Tekky <98614666+xtekky@users.noreply.github.com> | 2023-09-26 15:06:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-26 15:06:06 +0200 |
commit | 41af8aff6ce09be4131d50e0e24b8622628441fc (patch) | |
tree | 1519231f3513b57acf2548b77f1fc89e092fc4cb /g4f/models.py | |
parent | ~ (diff) | |
parent | Add ChatgptDuo and Aibn Provider (diff) | |
download | gpt4free-41af8aff6ce09be4131d50e0e24b8622628441fc.tar gpt4free-41af8aff6ce09be4131d50e0e24b8622628441fc.tar.gz gpt4free-41af8aff6ce09be4131d50e0e24b8622628441fc.tar.bz2 gpt4free-41af8aff6ce09be4131d50e0e24b8622628441fc.tar.lz gpt4free-41af8aff6ce09be4131d50e0e24b8622628441fc.tar.xz gpt4free-41af8aff6ce09be4131d50e0e24b8622628441fc.tar.zst gpt4free-41af8aff6ce09be4131d50e0e24b8622628441fc.zip |
Diffstat (limited to 'g4f/models.py')
-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, ]) ) |