From e1fc5517f54d0f952030aefa9ad38e0a84df1fa4 Mon Sep 17 00:00:00 2001 From: azmaveth Date: Thu, 20 Jun 2024 13:01:46 -0500 Subject: [PATCH] Update utils.py to add Claude 3 Sonnet back in for backwards compatibility --- installer/client/cli/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/client/cli/utils.py b/installer/client/cli/utils.py index 5bf673a..e8715f4 100644 --- a/installer/client/cli/utils.py +++ b/installer/client/cli/utils.py @@ -407,7 +407,7 @@ class Standalone: fullOllamaList = [] googleList = [] if "CLAUDE_API_KEY" in os.environ: - claudeList = ['claude-3-opus-20240229', 'claude-3-5-sonnet-20240620', + claudeList = ['claude-3-5-sonnet-20240620','claude-3-opus-20240229', 'claude-3-sonnet-20240229', 'claude-3-haiku-20240307', 'claude-2.1'] else: claudeList = []