diff options
author | abc <98614666+xtekky@users.noreply.github.com> | 2023-10-10 00:45:44 +0200 |
---|---|---|
committer | abc <98614666+xtekky@users.noreply.github.com> | 2023-10-10 00:45:44 +0200 |
commit | f9355ad5fcade92258cf1678210a45db3911e3e8 (patch) | |
tree | 1c289435f458fad0950bb03de5c7c5d103bc8d13 | |
parent | ~ (diff) | |
download | gpt4free-f9355ad5fcade92258cf1678210a45db3911e3e8.tar gpt4free-f9355ad5fcade92258cf1678210a45db3911e3e8.tar.gz gpt4free-f9355ad5fcade92258cf1678210a45db3911e3e8.tar.bz2 gpt4free-f9355ad5fcade92258cf1678210a45db3911e3e8.tar.lz gpt4free-f9355ad5fcade92258cf1678210a45db3911e3e8.tar.xz gpt4free-f9355ad5fcade92258cf1678210a45db3911e3e8.tar.zst gpt4free-f9355ad5fcade92258cf1678210a45db3911e3e8.zip |
-rw-r--r-- | g4f/models.py | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/g4f/models.py b/g4f/models.py index b4247703..ced8e290 100644 --- a/g4f/models.py +++ b/g4f/models.py @@ -9,7 +9,6 @@ from .Provider import ( ChatgptDuo, Vitalentum, ChatgptAi, - ChatForAi, AItianhu, ChatBase, Liaobots, @@ -28,7 +27,8 @@ from .Provider import ( Aibn, Bing, You, - H2o + H2o, + Aivvm ) @dataclass(unsafe_hash=True) @@ -45,7 +45,7 @@ default = Model( Yqcloud, # Answers short questions in chinese ChatBase, # Don't want to answer creatively ChatgptDuo, # Include search results - Aibn, Aichat, ChatForAi, ChatgptAi, ChatgptLogin, DeepAi, FreeGpt, GptGo, Myshell, Ylokh, + Aibn, Aichat, ChatgptAi, ChatgptLogin, DeepAi, FreeGpt, GptGo, Myshell, Ylokh, ]) ) @@ -54,7 +54,7 @@ gpt_35_long = Model( name = 'gpt-3.5-turbo', base_provider = 'openai', best_provider = RetryProvider([ - AiAsk, Aibn, Aichat, ChatForAi, ChatgptAi, ChatgptDemo, ChatgptDuo, + AiAsk, Aibn, Aichat, ChatgptAi, ChatgptDemo, ChatgptDuo, FreeGpt, GptGo, Liaobots, Myshell, Vitalentum, Ylokh, You, Yqcloud, GPTalk, GptGod ]) @@ -65,7 +65,7 @@ gpt_35_turbo = Model( name = 'gpt-3.5-turbo', base_provider = 'openai', best_provider = RetryProvider([ - DeepAi, ChatgptLogin, ChatgptAi, GptGo, AItianhu, Aichat, AItianhuSpace, Myshell, Aibn, ChatForAi, FreeGpt, Ylokh + DeepAi, ChatgptLogin, ChatgptAi, GptGo, AItianhu, Aichat, AItianhuSpace, Myshell, Aibn, FreeGpt, Ylokh ]) ) @@ -169,7 +169,8 @@ gpt_35_turbo_16k_0613 = Model( gpt_35_turbo_0613 = Model( name = 'gpt-3.5-turbo-0613', - base_provider = 'openai' + base_provider = 'openai', + best_provider=Aivvm ) gpt_4_0613 = Model( |