XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 1
返回提交历史

XFEstudio/gpt4free

feat(g4f/Provider/HuggingChat.py): add support for new model

7ac7dea1
kqlio67 <kqlio67@users.noreply.github.com>
提交于

代码差异

1 个文件 +2 -0
Modified g4f/Provider/HuggingChat.py +2 -0
@@ -17,6 +17,7 @@ class HuggingChat(AbstractProvider, ProviderModelMixin):
17 17 'meta-llama/Meta-Llama-3.1-70B-Instruct',
18 18 'CohereForAI/c4ai-command-r-plus-08-2024',
19 19 'Qwen/Qwen2.5-72B-Instruct',
20 'meta-llama/Llama-3.2-11B-Vision-Instruct',
20 21 'NousResearch/Hermes-3-Llama-3.1-8B',
21 22 'mistralai/Mistral-Nemo-Instruct-2407',
22 23 'microsoft/Phi-3.5-mini-instruct',
@@ -26,6 +27,7 @@ class HuggingChat(AbstractProvider, ProviderModelMixin):
26 27 "llama-3.1-70b": "meta-llama/Meta-Llama-3.1-70B-Instruct",
27 28 "command-r-plus": "CohereForAI/c4ai-command-r-plus-08-2024",
28 29 "qwen-2-72b": "Qwen/Qwen2.5-72B-Instruct",
30 "llama-3.2-11b": "meta-llama/Llama-3.2-11B-Vision-Instruct",
29 31 "hermes-3": "NousResearch/Hermes-3-Llama-3.1-8B",
30 32 "mistral-nemo": "mistralai/Mistral-Nemo-Instruct-2407",
31 33 "phi-3.5-mini": "microsoft/Phi-3.5-mini-instruct",