From e3df5d3e78f4e1d41c78d127dff32e1d5fd47df6 Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Fri, 30 Aug 2024 18:58:33 +0200 Subject: [PATCH] models fix --- suite_settings/models.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/suite_settings/models.py b/suite_settings/models.py index 75ea0b2..18bebb9 100644 --- a/suite_settings/models.py +++ b/suite_settings/models.py @@ -19,7 +19,7 @@ models = { 329: Model( display_name="Phi3 14b", identifier="phi3:14b", supports_tools=False, parameter_count_in_b=14 ), 251: Model( display_name="Phi3.5 3.8b", identifier="phi3.5:3.8b", supports_tools=False, parameter_count_in_b=3.8 ), 903: Model( display_name="Tinyllama 1.1b", identifier="tinyllama:1.1b", supports_tools=False, parameter_count_in_b=1.1 ), - 409: Model( display_name="Command R 34b", identifier="command-r:34b", supports_tools=False, parameter_count_in_b=34 ), + 409: Model( display_name="Command R 35b", identifier="command-r:35b", supports_tools=False, parameter_count_in_b=35 ), 404: Model( display_name="Command R+ 104b", identifier="command-r-plus:104b", supports_tools=True, parameter_count_in_b=104 ), 701: Model( display_name="Yi 6b", identifier="yi:6b", supports_tools=False, parameter_count_in_b=6 ), 704: Model( display_name="Yi 9b", identifier="yi:9b", supports_tools=False, parameter_count_in_b=6 ), @@ -29,6 +29,6 @@ models = { 295: Model( display_name="Qwen2 7b", identifier="qwen2:7b", supports_tools=False, parameter_count_in_b=7 ), 655: Model( display_name="Qwen2 72b", identifier="qwen2:72b", supports_tools=False, parameter_count_in_b=72 ), 780: Model( display_name="Hermes3 8b", identifier="hermes3:8b", supports_tools=True, parameter_count_in_b=8 ), - 68: Model( display_name="Aya 8b", identifier="aya:8b", supports_tools=True, parameter_count_in_b=8 ), - 397: Model( display_name="Aya 35b", identifier="aya:35b", supports_tools=True, parameter_count_in_b=35 ), + 68: Model( display_name="Aya 8b", identifier="aya:8b", supports_tools=False, parameter_count_in_b=8 ), + 397: Model( display_name="Aya 35b", identifier="aya:35b", supports_tools=False, parameter_count_in_b=35 ), }