summaryrefslogtreecommitdiffstats
path: root/g4f/models.py
diff options
context:
space:
mode:
authorHeiner Lohaus <hlohaus@users.noreply.github.com>2024-02-23 17:21:10 +0100
committerHeiner Lohaus <hlohaus@users.noreply.github.com>2024-02-23 17:21:10 +0100
commit7953560303ad82f13f3d4c910db1193da21b11d7 (patch)
treee88b25bcc756e02741ea1875fcf62ff9ba76b975 /g4f/models.py
parentFix isssue with stop in client (diff)
downloadgpt4free-7953560303ad82f13f3d4c910db1193da21b11d7.tar
gpt4free-7953560303ad82f13f3d4c910db1193da21b11d7.tar.gz
gpt4free-7953560303ad82f13f3d4c910db1193da21b11d7.tar.bz2
gpt4free-7953560303ad82f13f3d4c910db1193da21b11d7.tar.lz
gpt4free-7953560303ad82f13f3d4c910db1193da21b11d7.tar.xz
gpt4free-7953560303ad82f13f3d4c910db1193da21b11d7.tar.zst
gpt4free-7953560303ad82f13f3d4c910db1193da21b11d7.zip
Diffstat (limited to 'g4f/models.py')
-rw-r--r--g4f/models.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/g4f/models.py b/g4f/models.py
index f5951a29..bf58ff25 100644
--- a/g4f/models.py
+++ b/g4f/models.py
@@ -99,31 +99,31 @@ gpt_4_turbo = Model(
llama2_7b = Model(
name = "meta-llama/Llama-2-7b-chat-hf",
- base_provider = 'huggingface',
+ base_provider = 'meta',
best_provider = RetryProvider([Llama2, DeepInfra])
)
llama2_13b = Model(
name = "meta-llama/Llama-2-13b-chat-hf",
- base_provider = 'huggingface',
+ base_provider = 'meta',
best_provider = RetryProvider([Llama2, DeepInfra])
)
llama2_70b = Model(
name = "meta-llama/Llama-2-70b-chat-hf",
- base_provider = "huggingface",
+ base_provider = "meta",
best_provider = RetryProvider([Llama2, DeepInfra, HuggingChat, PerplexityLabs])
)
codellama_34b_instruct = Model(
name = "codellama/CodeLlama-34b-Instruct-hf",
- base_provider = "huggingface",
+ base_provider = "meta",
best_provider = RetryProvider([HuggingChat, PerplexityLabs, DeepInfra])
)
codellama_70b_instruct = Model(
name = "codellama/CodeLlama-70b-Instruct-hf",
- base_provider = "huggingface",
+ base_provider = "meta",
best_provider = DeepInfra
)