diff options
author | kqlio67 <kqlio67@users.noreply.github.com> | 2024-10-16 20:00:08 +0200 |
---|---|---|
committer | kqlio67 <kqlio67@users.noreply.github.com> | 2024-10-16 20:00:08 +0200 |
commit | 9f394f9613469c7ca56ae3cdc9a198f5c196fc13 (patch) | |
tree | 92ed3d2093a62b41710bc19e38ea0db964eac205 /g4f/models.py | |
parent | feat(g4f/Provider/HuggingChat.py): add new model support for Nemotron (diff) | |
download | gpt4free-9f394f9613469c7ca56ae3cdc9a198f5c196fc13.tar gpt4free-9f394f9613469c7ca56ae3cdc9a198f5c196fc13.tar.gz gpt4free-9f394f9613469c7ca56ae3cdc9a198f5c196fc13.tar.bz2 gpt4free-9f394f9613469c7ca56ae3cdc9a198f5c196fc13.tar.lz gpt4free-9f394f9613469c7ca56ae3cdc9a198f5c196fc13.tar.xz gpt4free-9f394f9613469c7ca56ae3cdc9a198f5c196fc13.tar.zst gpt4free-9f394f9613469c7ca56ae3cdc9a198f5c196fc13.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/models.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/g4f/models.py b/g4f/models.py index 6505a77a..0dd15cf5 100644 --- a/g4f/models.py +++ b/g4f/models.py @@ -6,6 +6,7 @@ from dataclasses import dataclass from .Provider import IterListProvider, ProviderType from .Provider import ( AIChatFree, + AiMathGPT, Airforce, Allyfy, AmigoChat, @@ -213,7 +214,7 @@ llama_3_1_8b = Model( llama_3_1_70b = Model( name = "llama-3.1-70b", base_provider = "Meta Llama", - best_provider = IterListProvider([DDG, HuggingChat, Blackbox, FreeGpt, TeachAnything, Free2GPT, DeepInfraChat, DarkAI, Airforce, HuggingFace, PerplexityLabs]) + best_provider = IterListProvider([DDG, HuggingChat, Blackbox, FreeGpt, TeachAnything, Free2GPT, DeepInfraChat, DarkAI, Airforce, AiMathGPT, HuggingFace, PerplexityLabs]) ) llama_3_1_405b = Model( |