From 1617e515bcec170717a782e20e9870f698fdab5d Mon Sep 17 00:00:00 2001 From: kqlio67 Date: Wed, 16 Oct 2024 19:33:06 +0300 Subject: feat(g4f/Provider/HuggingChat.py): add new model support for Nemotron --- g4f/models.py | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'g4f/models.py') diff --git a/g4f/models.py b/g4f/models.py index f124cf86..6505a77a 100644 --- a/g4f/models.py +++ b/g4f/models.py @@ -707,6 +707,13 @@ cybertron_7b = Model( best_provider = Cloudflare ) +### Nvidia ### +nemotron_70b = Model( + name = 'nemotron-70b', + base_provider = 'Nvidia', + best_provider = IterListProvider([HuggingChat, HuggingFace]) +) + ############# @@ -1070,6 +1077,10 @@ class ModelUtils: 'cybertron-7b': cybertron_7b, +### Nvidia ### +'nemotron-70b': nemotron_70b, + + ############# ### Image ### -- cgit v1.2.3