diff options
author | kqlio67 <kqlio67@users.noreply.github.com> | 2024-09-25 19:05:39 +0200 |
---|---|---|
committer | kqlio67 <kqlio67@users.noreply.github.com> | 2024-09-25 19:05:39 +0200 |
commit | 1e62a9dd60d69de636845497ffe9512fe60dfa2a (patch) | |
tree | c9aa6494db1a590908b7e5d0e39a102ad6b0b402 /g4f/Provider/HuggingChat.py | |
parent | The restored directory 'g4f/Provider/deprecated' (diff) | |
download | gpt4free-1e62a9dd60d69de636845497ffe9512fe60dfa2a.tar gpt4free-1e62a9dd60d69de636845497ffe9512fe60dfa2a.tar.gz gpt4free-1e62a9dd60d69de636845497ffe9512fe60dfa2a.tar.bz2 gpt4free-1e62a9dd60d69de636845497ffe9512fe60dfa2a.tar.lz gpt4free-1e62a9dd60d69de636845497ffe9512fe60dfa2a.tar.xz gpt4free-1e62a9dd60d69de636845497ffe9512fe60dfa2a.tar.zst gpt4free-1e62a9dd60d69de636845497ffe9512fe60dfa2a.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/Provider/HuggingChat.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/g4f/Provider/HuggingChat.py b/g4f/Provider/HuggingChat.py index 01490e2f..488a1114 100644 --- a/g4f/Provider/HuggingChat.py +++ b/g4f/Provider/HuggingChat.py @@ -18,9 +18,9 @@ class HuggingChat(AbstractProvider, ProviderModelMixin): 'CohereForAI/c4ai-command-r-plus-08-2024', 'Qwen/Qwen2.5-72B-Instruct', 'mistralai/Mixtral-8x7B-Instruct-v0.1', - 'NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO', - 'mistralai/Mistral-7B-Instruct-v0.3', - 'microsoft/Phi-3-mini-4k-instruct', + 'NousResearch/Hermes-3-Llama-3.1-8B', + 'mistralai/Mistral-Nemo-Instruct-2407', + 'microsoft/Phi-3.5-mini-instruct', ] model_aliases = { @@ -28,9 +28,9 @@ class HuggingChat(AbstractProvider, ProviderModelMixin): "command-r-plus": "CohereForAI/c4ai-command-r-plus-08-2024", "qwen-2-72b": "Qwen/Qwen2.5-72B-Instruct", "mixtral-8x7b": "mistralai/Mixtral-8x7B-Instruct-v0.1", - "mixtral-8x7b-dpo": "NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO", - "mistral-7b": "mistralai/Mistral-7B-Instruct-v0.3", - "phi-3-mini-4k": "microsoft/Phi-3-mini-4k-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", } @classmethod |