From b906fff4dddb811009dedeca4ee6e895fecd66b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Mayoral=20Vilches?= Date: Sun, 1 Jun 2025 13:25:49 +0000 Subject: [PATCH] Further discard old models MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: VĂ­ctor Mayoral Vilches --- src/cai/repl/commands/model.py | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/src/cai/repl/commands/model.py b/src/cai/repl/commands/model.py index bb98614e..6becd296 100644 --- a/src/cai/repl/commands/model.py +++ b/src/cai/repl/commands/model.py @@ -102,19 +102,6 @@ class ModelCommand(Command): }, ], "OpenAI": [ - { - "name": "o1", - "description": ( - "Excellent for mathematical reasoning and " - "problem-solving" - ) - }, - { - "name": "o1-mini", - "description": ( - "Smaller O1 model with good math capabilities" - ) - }, { "name": "o3-mini", "description": "Latest mini model in the O-series" @@ -125,18 +112,6 @@ class ModelCommand(Command): "Latest GPT-4 model with improved capabilities" ) }, - { - "name": "gpt-4o-audio-preview", - "description": "GPT-4o with audio capabilities" - }, - { - "name": "gpt-4o-audio-preview-2024-12-17", - "description": "Updated GPT-4o with audio capabilities" - }, - { - "name": "gpt-4o-audio-preview-2024-10-01", - "description": "Previous GPT-4o with audio capabilities" - } ], "DeepSeek": [ { @@ -316,7 +291,6 @@ class ModelCommand(Command): "Free", model_description ) - # Add to cached models for numeric selection self.cached_models.append(model_name) self.cached_model_numbers[str(i)] = model_name