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

XFEstudio/gpt4free

Updated g4f/models.py g4f/Provider/HuggingChat.py

8237de5d
kqlio67 <kqlio67@users.noreply.github.com>
提交于

代码差异

2 个文件 +1 -3
Modified g4f/Provider/HuggingChat.py +0 -2
@@ -17,7 +17,6 @@ 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 'mistralai/Mixtral-8x7B-Instruct-v0.1',
21 20 'NousResearch/Hermes-3-Llama-3.1-8B',
22 21 'mistralai/Mistral-Nemo-Instruct-2407',
23 22 'microsoft/Phi-3.5-mini-instruct',
@@ -27,7 +26,6 @@ class HuggingChat(AbstractProvider, ProviderModelMixin):
27 26 "llama-3.1-70b": "meta-llama/Meta-Llama-3.1-70B-Instruct",
28 27 "command-r-plus": "CohereForAI/c4ai-command-r-plus-08-2024",
29 28 "qwen-2-72b": "Qwen/Qwen2.5-72B-Instruct",
30 "mixtral-8x7b": "mistralai/Mixtral-8x7B-Instruct-v0.1",
31 29 "hermes-3": "NousResearch/Hermes-3-Llama-3.1-8B",
32 30 "mistral-nemo": "mistralai/Mistral-Nemo-Instruct-2407",
33 31 "phi-3.5-mini": "microsoft/Phi-3.5-mini-instruct",
Modified g4f/models.py +1 -1
@@ -240,7 +240,7 @@ mistral_7b = Model(
240 240 mixtral_8x7b = Model(
241 241 name = "mixtral-8x7b",
242 242 base_provider = "Mistral",
243 best_provider = IterListProvider([HuggingChat, DDG, ReplicateHome, DeepInfraChat, Airforce, DeepInfra, HuggingFace])
243 best_provider = IterListProvider([DDG, ReplicateHome, DeepInfraChat, Airforce, DeepInfra])
244 244 )
245 245
246 246 mixtral_8x22b = Model(