From 4b352b2ad0161c6b4559dbbdabc5b2a699060b86 Mon Sep 17 00:00:00 2001 From: OB42 <19638906+OB42@users.noreply.github.com> Date: Thu, 9 May 2024 05:18:22 +0200 Subject: [PATCH] Fix setup.sh to include the last anthropic models (#282) --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index e5f9dafc..6284b294 100755 --- a/setup.sh +++ b/setup.sh @@ -69,7 +69,7 @@ setup_llm_providers() { else update_or_add_env_var "ANTHROPIC_API_KEY" "$anthropic_api_key" update_or_add_env_var "ENABLE_ANTHROPIC" "true" - model_options+=("ANTHROPIC_CLAUDE3") + model_options+=("ANTHROPIC_CLAUDE3_OPUS" "ANTHROPIC_CLAUDE3_SONNET" "ANTHROPIC_CLAUDE3_HAIKU") fi else update_or_add_env_var "ENABLE_ANTHROPIC" "false"