diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-01-23 05:02:14 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-01-23 05:02:14 +0100 |
commit | f5518bb94d9ec78016b6e98da414647473f761e9 (patch) | |
tree | 3e65e24c47f6a2600442d7935baf2503ad4f3e4f /g4f/Provider/HuggingChat.py | |
parent | Revert "Cleanup unused dependencies" (diff) | |
download | gpt4free-f5518bb94d9ec78016b6e98da414647473f761e9.tar gpt4free-f5518bb94d9ec78016b6e98da414647473f761e9.tar.gz gpt4free-f5518bb94d9ec78016b6e98da414647473f761e9.tar.bz2 gpt4free-f5518bb94d9ec78016b6e98da414647473f761e9.tar.lz gpt4free-f5518bb94d9ec78016b6e98da414647473f761e9.tar.xz gpt4free-f5518bb94d9ec78016b6e98da414647473f761e9.tar.zst gpt4free-f5518bb94d9ec78016b6e98da414647473f761e9.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/Provider/HuggingChat.py | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/g4f/Provider/HuggingChat.py b/g4f/Provider/HuggingChat.py index 4a42b3c8..3b4a520c 100644 --- a/g4f/Provider/HuggingChat.py +++ b/g4f/Provider/HuggingChat.py @@ -8,14 +8,23 @@ from ..typing import AsyncResult, Messages from .base_provider import AsyncGeneratorProvider from .helper import format_prompt, get_cookies -map = { - "openchat/openchat_3.5": "openchat/openchat-3.5-1210", -} class HuggingChat(AsyncGeneratorProvider): url = "https://huggingface.co/chat" working = True - model = "meta-llama/Llama-2-70b-chat-hf" + default_model = "meta-llama/Llama-2-70b-chat-hf" + models = [ + "mistralai/Mixtral-8x7B-Instruct-v0.1", + "meta-llama/Llama-2-70b-chat-hf", + "NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO", + "codellama/CodeLlama-34b-Instruct-hf", + "mistralai/Mistral-7B-Instruct-v0.2", + "openchat/openchat-3.5-0106" + ] + model_map = { + "openchat/openchat_3.5": "openchat/openchat-3.5-1210", + "mistralai/Mixtral-8x7B-Instruct-v0.1": "mistralai/Mistral-7B-Instruct-v0.2" + } @classmethod async def create_async_generator( @@ -29,9 +38,11 @@ class HuggingChat(AsyncGeneratorProvider): **kwargs ) -> AsyncResult: if not model: - model = cls.model - elif model in map: - model = map[model] + model = cls.default_model + elif model in cls.model_map: + model = cls.model_map[model] + elif model not in cls.models: + raise ValueError(f"Model is not supported: {model}") if not cookies: cookies = get_cookies(".huggingface.co") |