diff options
author | H Lohaus <hlohaus@users.noreply.github.com> | 2024-02-23 17:27:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-23 17:27:19 +0100 |
commit | 0687d3c0af7179848ce0b91b8a4f0af2a432edaa (patch) | |
tree | e88b25bcc756e02741ea1875fcf62ff9ba76b975 /g4f/models.py | |
parent | Fix isssue with stop in client (diff) | |
parent | Improve readme, add smartphone guide (diff) | |
download | gpt4free-0687d3c0af7179848ce0b91b8a4f0af2a432edaa.tar gpt4free-0687d3c0af7179848ce0b91b8a4f0af2a432edaa.tar.gz gpt4free-0687d3c0af7179848ce0b91b8a4f0af2a432edaa.tar.bz2 gpt4free-0687d3c0af7179848ce0b91b8a4f0af2a432edaa.tar.lz gpt4free-0687d3c0af7179848ce0b91b8a4f0af2a432edaa.tar.xz gpt4free-0687d3c0af7179848ce0b91b8a4f0af2a432edaa.tar.zst gpt4free-0687d3c0af7179848ce0b91b8a4f0af2a432edaa.zip |
Diffstat (limited to 'g4f/models.py')
-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 f5951a29..bf58ff25 100644 --- a/g4f/models.py +++ b/g4f/models.py @@ -99,31 +99,31 @@ gpt_4_turbo = Model( llama2_7b = Model( name = "meta-llama/Llama-2-7b-chat-hf", - base_provider = 'huggingface', + base_provider = 'meta', best_provider = RetryProvider([Llama2, DeepInfra]) ) llama2_13b = Model( name = "meta-llama/Llama-2-13b-chat-hf", - base_provider = 'huggingface', + base_provider = 'meta', best_provider = RetryProvider([Llama2, DeepInfra]) ) llama2_70b = Model( name = "meta-llama/Llama-2-70b-chat-hf", - base_provider = "huggingface", + base_provider = "meta", best_provider = RetryProvider([Llama2, DeepInfra, HuggingChat, PerplexityLabs]) ) codellama_34b_instruct = Model( name = "codellama/CodeLlama-34b-Instruct-hf", - base_provider = "huggingface", + base_provider = "meta", best_provider = RetryProvider([HuggingChat, PerplexityLabs, DeepInfra]) ) codellama_70b_instruct = Model( name = "codellama/CodeLlama-70b-Instruct-hf", - base_provider = "huggingface", + base_provider = "meta", best_provider = DeepInfra ) |