diff options
author | abc <98614666+xtekky@users.noreply.github.com> | 2024-04-13 04:09:11 +0200 |
---|---|---|
committer | abc <98614666+xtekky@users.noreply.github.com> | 2024-04-13 04:09:11 +0200 |
commit | 2fad27b2c5ce6b05591d2921c7bafefa2de7c9b5 (patch) | |
tree | ea9b462c5d963f649e89f92068254c6d6ac00501 /g4f/Provider/PerplexityLabs.py | |
parent | add more models (diff) | |
download | gpt4free-2fad27b2c5ce6b05591d2921c7bafefa2de7c9b5.tar gpt4free-2fad27b2c5ce6b05591d2921c7bafefa2de7c9b5.tar.gz gpt4free-2fad27b2c5ce6b05591d2921c7bafefa2de7c9b5.tar.bz2 gpt4free-2fad27b2c5ce6b05591d2921c7bafefa2de7c9b5.tar.lz gpt4free-2fad27b2c5ce6b05591d2921c7bafefa2de7c9b5.tar.xz gpt4free-2fad27b2c5ce6b05591d2921c7bafefa2de7c9b5.tar.zst gpt4free-2fad27b2c5ce6b05591d2921c7bafefa2de7c9b5.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/Provider/PerplexityLabs.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/g4f/Provider/PerplexityLabs.py b/g4f/Provider/PerplexityLabs.py index 6c80efee..ba956100 100644 --- a/g4f/Provider/PerplexityLabs.py +++ b/g4f/Provider/PerplexityLabs.py @@ -19,13 +19,14 @@ class PerplexityLabs(AsyncGeneratorProvider, ProviderModelMixin): "sonar-small-online", "sonar-medium-online", "sonar-small-chat", "sonar-medium-chat", "mistral-7b-instruct", "codellama-70b-instruct", "llava-v1.5-7b-wrapper", "llava-v1.6-34b", "mixtral-8x7b-instruct", "gemma-2b-it", "gemma-7b-it" - "mistral-medium", "related" + "mistral-medium", "related", "dbrx-instruct" ] model_aliases = { "mistralai/Mistral-7B-Instruct-v0.1": "mistral-7b-instruct", "mistralai/Mixtral-8x7B-Instruct-v0.1": "mixtral-8x7b-instruct", "codellama/CodeLlama-70b-Instruct-hf": "codellama-70b-instruct", - "llava-v1.5-7b": "llava-v1.5-7b-wrapper" + "llava-v1.5-7b": "llava-v1.5-7b-wrapper", + 'databricks/dbrx-instruct': "dbrx-instruct" } @classmethod |