diff options
author | kqlio67 <166700875+kqlio67@users.noreply.github.com> | 2024-11-20 09:51:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-20 09:51:29 +0100 |
commit | ea346971dfc418cb144d633dc75ae704c92f5d92 (patch) | |
tree | 09a7e579a0c4f878b390543f51a5e59aa90f749a /g4f/models.py | |
parent | Merge pull request #2389 from hlohaus/info (diff) | |
download | gpt4free-ea346971dfc418cb144d633dc75ae704c92f5d92.tar gpt4free-ea346971dfc418cb144d633dc75ae704c92f5d92.tar.gz gpt4free-ea346971dfc418cb144d633dc75ae704c92f5d92.tar.bz2 gpt4free-ea346971dfc418cb144d633dc75ae704c92f5d92.tar.lz gpt4free-ea346971dfc418cb144d633dc75ae704c92f5d92.tar.xz gpt4free-ea346971dfc418cb144d633dc75ae704c92f5d92.tar.zst gpt4free-ea346971dfc418cb144d633dc75ae704c92f5d92.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/models.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/g4f/models.py b/g4f/models.py index 8825242f..655aca9c 100644 --- a/g4f/models.py +++ b/g4f/models.py @@ -211,7 +211,7 @@ phi_3_5_mini = Model( gemini_pro = Model( name = 'gemini-pro', base_provider = 'Google DeepMind', - best_provider = IterListProvider([GeminiPro, Blackbox, AIChatFree, Liaobots]) + best_provider = IterListProvider([Blackbox, AIChatFree, GeminiPro, Liaobots]) ) gemini_flash = Model( @@ -347,7 +347,7 @@ deepseek_coder = Model( wizardlm_2_8x22b = Model( name = 'wizardlm-2-8x22b', base_provider = 'WizardLM', - best_provider = IterListProvider([DeepInfraChat]) + best_provider = DeepInfraChat ) ### Yorickvp ### @@ -389,7 +389,7 @@ grok_beta = Model( sonar_online = Model( name = 'sonar-online', base_provider = 'Perplexity AI', - best_provider = IterListProvider([PerplexityLabs]) + best_provider = PerplexityLabs ) sonar_chat = Model( @@ -450,7 +450,7 @@ neural_7b = Model( sdxl = Model( name = 'sdxl', base_provider = 'Stability AI', - best_provider = IterListProvider([ReplicateHome]) + best_provider = ReplicateHome ) @@ -671,4 +671,4 @@ class ModelUtils: 'any-dark': any_dark, } -_all_models = list(ModelUtils.convert.keys())
\ No newline at end of file +_all_models = list(ModelUtils.convert.keys()) |