diff options
author | Tekky <98614666+xtekky@users.noreply.github.com> | 2024-04-25 12:05:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-25 12:05:24 +0200 |
commit | 41c9c9e415ea9b21d08ec1bdff413c4b0cb4a9a1 (patch) | |
tree | 64db4af058f3f3a2364216cbade5762791c5e370 /g4f/Provider | |
parent | Update README.md (diff) | |
parent | Merge branch 'xtekky:main' into main (diff) | |
download | gpt4free-41c9c9e415ea9b21d08ec1bdff413c4b0cb4a9a1.tar gpt4free-41c9c9e415ea9b21d08ec1bdff413c4b0cb4a9a1.tar.gz gpt4free-41c9c9e415ea9b21d08ec1bdff413c4b0cb4a9a1.tar.bz2 gpt4free-41c9c9e415ea9b21d08ec1bdff413c4b0cb4a9a1.tar.lz gpt4free-41c9c9e415ea9b21d08ec1bdff413c4b0cb4a9a1.tar.xz gpt4free-41c9c9e415ea9b21d08ec1bdff413c4b0cb4a9a1.tar.zst gpt4free-41c9c9e415ea9b21d08ec1bdff413c4b0cb4a9a1.zip |
Diffstat (limited to 'g4f/Provider')
-rw-r--r-- | g4f/Provider/HuggingChat.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/g4f/Provider/HuggingChat.py b/g4f/Provider/HuggingChat.py index 65273345..ac324390 100644 --- a/g4f/Provider/HuggingChat.py +++ b/g4f/Provider/HuggingChat.py @@ -22,7 +22,8 @@ class HuggingChat(AsyncGeneratorProvider, ProviderModelMixin): 'google/gemma-1.1-7b-it', 'NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO', 'mistralai/Mistral-7B-Instruct-v0.2', - 'meta-llama/Meta-Llama-3-70B-Instruct' + 'meta-llama/Meta-Llama-3-70B-Instruct', + 'microsoft/Phi-3-mini-4k-instruct' ] model_aliases = { "mistralai/Mistral-7B-Instruct-v0.1": "mistralai/Mistral-7B-Instruct-v0.2" @@ -112,4 +113,4 @@ class HuggingChat(AsyncGeneratorProvider, ProviderModelMixin): class Conversation(BaseConversation): def __init__(self, conversation_id: str) -> None: - self.conversation_id = conversation_id
\ No newline at end of file + self.conversation_id = conversation_id |