diff options
author | kqlio67 <kqlio67@users.noreply.github.com> | 2024-09-12 16:55:39 +0200 |
---|---|---|
committer | kqlio67 <kqlio67@users.noreply.github.com> | 2024-09-12 16:55:39 +0200 |
commit | abefd7f36fb5b03e612e5b3e96ba1079c4d2f303 (patch) | |
tree | e94a18378d833e1107c2fbf231ce60b83464b788 /g4f/Provider/HuggingChat.py | |
parent | feat(g4f/Provider/Bixin123.py): implement dynamic fingerprint generation (diff) | |
download | gpt4free-abefd7f36fb5b03e612e5b3e96ba1079c4d2f303.tar gpt4free-abefd7f36fb5b03e612e5b3e96ba1079c4d2f303.tar.gz gpt4free-abefd7f36fb5b03e612e5b3e96ba1079c4d2f303.tar.bz2 gpt4free-abefd7f36fb5b03e612e5b3e96ba1079c4d2f303.tar.lz gpt4free-abefd7f36fb5b03e612e5b3e96ba1079c4d2f303.tar.xz gpt4free-abefd7f36fb5b03e612e5b3e96ba1079c4d2f303.tar.zst gpt4free-abefd7f36fb5b03e612e5b3e96ba1079c4d2f303.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/Provider/HuggingChat.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/g4f/Provider/HuggingChat.py b/g4f/Provider/HuggingChat.py index 76c76a35..28e58768 100644 --- a/g4f/Provider/HuggingChat.py +++ b/g4f/Provider/HuggingChat.py @@ -14,8 +14,7 @@ class HuggingChat(AbstractProvider, ProviderModelMixin): default_model = "meta-llama/Meta-Llama-3.1-70B-Instruct" models = [ 'meta-llama/Meta-Llama-3.1-70B-Instruct', - 'meta-llama/Meta-Llama-3.1-405B-Instruct-FP8', - 'CohereForAI/c4ai-command-r-plus', + 'CohereForAI/c4ai-command-r-plus-08-2024', 'mistralai/Mixtral-8x7B-Instruct-v0.1', 'NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO', '01-ai/Yi-1.5-34B-Chat', @@ -25,8 +24,7 @@ class HuggingChat(AbstractProvider, ProviderModelMixin): model_aliases = { "llama-3.1-70b": "meta-llama/Meta-Llama-3.1-70B-Instruct", - "llama-3.1-405b": "meta-llama/Meta-Llama-3.1-405B-Instruct-FP8", - "command-r-plus": "CohereForAI/c4ai-command-r-plus", + "command-r-plus": "CohereForAI/c4ai-command-r-plus-08-2024", "mixtral-8x7b": "mistralai/Mixtral-8x7B-Instruct-v0.1", "mixtral-8x7b": "NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO", "yi-1.5-34b": "01-ai/Yi-1.5-34B-Chat", |