From 5344052aeb593285fefc984686add2ed32e978ee Mon Sep 17 00:00:00 2001 From: "Jay Alammar (aider)" Date: Fri, 6 Sep 2024 17:06:11 -0400 Subject: [PATCH] feat: add support for new Cohere models command-r-08-2024 and command-r-plus-08-2024 --- aider/models.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/aider/models.py b/aider/models.py index 5fc20df95..c213273e7 100644 --- a/aider/models.py +++ b/aider/models.py @@ -91,6 +91,19 @@ MODEL_SETTINGS = [ weak_model_name="gpt-4o-mini", reminder="sys", ), + # New Cohere models + ModelSettings( + "command-r-08-2024", + "whole", + weak_model_name="command-r-08-2024", + use_repo_map=True, + ), + ModelSettings( + "command-r-plus-08-2024", + "whole", + weak_model_name="command-r-plus-08-2024", + use_repo_map=True, + ), ModelSettings( "gpt-3.5-turbo-0125", "whole",