diff options
author | Tekky <98614666+xtekky@users.noreply.github.com> | 2024-10-03 13:20:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-03 13:20:46 +0200 |
commit | 6d19ba695655c85916deb2b6ba67c831fcf4c885 (patch) | |
tree | 467f56307f7a538b48eb9ffd6e318a9ff33e0159 /g4f/Provider/HuggingChat.py | |
parent | ~ (diff) | |
parent | feat(g4f/models.py): enhance llama_3_1_405b with Blackbox provider (diff) | |
download | gpt4free-0.3.2.9.tar gpt4free-0.3.2.9.tar.gz gpt4free-0.3.2.9.tar.bz2 gpt4free-0.3.2.9.tar.lz gpt4free-0.3.2.9.tar.xz gpt4free-0.3.2.9.tar.zst gpt4free-0.3.2.9.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/Provider/HuggingChat.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/g4f/Provider/HuggingChat.py b/g4f/Provider/HuggingChat.py index e6f70bed..30e97d7d 100644 --- a/g4f/Provider/HuggingChat.py +++ b/g4f/Provider/HuggingChat.py @@ -17,6 +17,7 @@ class HuggingChat(AbstractProvider, ProviderModelMixin): 'meta-llama/Meta-Llama-3.1-70B-Instruct', 'CohereForAI/c4ai-command-r-plus-08-2024', 'Qwen/Qwen2.5-72B-Instruct', + 'meta-llama/Llama-3.2-11B-Vision-Instruct', 'NousResearch/Hermes-3-Llama-3.1-8B', 'mistralai/Mistral-Nemo-Instruct-2407', 'microsoft/Phi-3.5-mini-instruct', @@ -26,6 +27,7 @@ class HuggingChat(AbstractProvider, ProviderModelMixin): "llama-3.1-70b": "meta-llama/Meta-Llama-3.1-70B-Instruct", "command-r-plus": "CohereForAI/c4ai-command-r-plus-08-2024", "qwen-2-72b": "Qwen/Qwen2.5-72B-Instruct", + "llama-3.2-11b": "meta-llama/Llama-3.2-11B-Vision-Instruct", "hermes-3": "NousResearch/Hermes-3-Llama-3.1-8B", "mistral-nemo": "mistralai/Mistral-Nemo-Instruct-2407", "phi-3.5-mini": "microsoft/Phi-3.5-mini-instruct", |