summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkqlio67 <kqlio67@users.noreply.github.com>2024-10-02 23:40:04 +0200
committerkqlio67 <kqlio67@users.noreply.github.com>2024-10-02 23:40:04 +0200
commit7ac7dea13fa3a285cd87a7257ef3354ed4006360 (patch)
tree161ce68d1acac1d120c8ee7e26310edad453534f
parentfeat(g4f/Provider/ChatGpt.py): enhance error handling and add debugging (diff)
downloadgpt4free-7ac7dea13fa3a285cd87a7257ef3354ed4006360.tar
gpt4free-7ac7dea13fa3a285cd87a7257ef3354ed4006360.tar.gz
gpt4free-7ac7dea13fa3a285cd87a7257ef3354ed4006360.tar.bz2
gpt4free-7ac7dea13fa3a285cd87a7257ef3354ed4006360.tar.lz
gpt4free-7ac7dea13fa3a285cd87a7257ef3354ed4006360.tar.xz
gpt4free-7ac7dea13fa3a285cd87a7257ef3354ed4006360.tar.zst
gpt4free-7ac7dea13fa3a285cd87a7257ef3354ed4006360.zip
-rw-r--r--g4f/Provider/HuggingChat.py2
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",