diff options
author | nullstreak <139914347+nullstreak@users.noreply.github.com> | 2024-01-21 06:20:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-21 06:20:45 +0100 |
commit | c578385cc4f8c2f9608f500d0506645210266973 (patch) | |
tree | a546eb459374ec909ba7b8322c843759a71ce5d7 /g4f/models.py | |
parent | Merge pull request #1484 from hlohaus/copilot (diff) | |
download | gpt4free-c578385cc4f8c2f9608f500d0506645210266973.tar gpt4free-c578385cc4f8c2f9608f500d0506645210266973.tar.gz gpt4free-c578385cc4f8c2f9608f500d0506645210266973.tar.bz2 gpt4free-c578385cc4f8c2f9608f500d0506645210266973.tar.lz gpt4free-c578385cc4f8c2f9608f500d0506645210266973.tar.xz gpt4free-c578385cc4f8c2f9608f500d0506645210266973.tar.zst gpt4free-c578385cc4f8c2f9608f500d0506645210266973.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/models.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/g4f/models.py b/g4f/models.py index dd6e0a2c..40a72d77 100644 --- a/g4f/models.py +++ b/g4f/models.py @@ -130,6 +130,14 @@ mistral_7b = Model( best_provider = RetryProvider([DeepInfra, HuggingChat]) ) +# Dolphin +dolphin_mixtral_8x7b = Model( + name = "cognitivecomputations/dolphin-2.6-mixtral-8x7b", + base_provider = "huggingface", + best_provider = DeepInfra +) + +# OpenChat openchat_35 = Model( name = "openchat/openchat_3.5", base_provider = "huggingface", @@ -337,6 +345,11 @@ class ModelUtils: # Mistral 'mixtral-8x7b': mixtral_8x7b, 'mistral-7b': mistral_7b, + + # Dolphin + 'dolphin-mixtral-8x7b': dolphin_mixtral_8x7b, + + # OpenChat 'openchat_3.5': openchat_35, # Gemini Pro |