Skip to content

Commit

Permalink
feat(g4f/models.py): Update model configurations and add new AI models
Browse files Browse the repository at this point in the history
  • Loading branch information
kqlio67 committed Feb 6, 2025
1 parent 3e2270b commit 6188d42
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion g4f/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ class VisionModel(Model):
qwen_2_5_72b = Model(
name = 'qwen-2.5-72b',
base_provider = 'Qwen',
best_provider = IterListProvider([DeepInfraChat, PollinationsAI, Jmuz])
best_provider = IterListProvider([PollinationsAI, Jmuz])
)
qwen_2_5_coder_32b = Model(
name = 'qwen-2.5-coder-32b',
Expand Down Expand Up @@ -584,6 +584,13 @@ class VisionModel(Model):
best_provider = DeepInfraChat
)

### OpenBMB ###
minicpm_2_5 = Model(
name = "minicpm-2.5",
base_provider = "OpenBMB",
best_provider = DeepInfraChat
)

### Uncensored AI ###
evil = Model(
name = 'evil',
Expand Down

0 comments on commit 6188d42

Please sign in to comment.