summaryrefslogtreecommitdiffstats
path: root/g4f/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'g4f/models.py')
-rw-r--r--g4f/models.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/g4f/models.py b/g4f/models.py
index ff8b3a9c..fe99958c 100644
--- a/g4f/models.py
+++ b/g4f/models.py
@@ -20,6 +20,7 @@ from .Provider import (
Vercel,
Gemini,
Koala,
+ Cohere,
Bing,
You,
Pi,
@@ -275,7 +276,7 @@ dbrx_instruct = Model(
command_r_plus = Model(
name = 'CohereForAI/c4ai-command-r-plus',
base_provider = 'mistral',
- best_provider = HuggingChat
+ best_provider = RetryProvider([HuggingChat, Cohere])
)
class ModelUtils: