From d2a927f404d63344b402be132c605fb6fca3bfe6 Mon Sep 17 00:00:00 2001 From: 100daysofdevops <47483190+100daysofdevops@users.noreply.github.com> Date: Mon, 25 Nov 2024 18:30:01 -0800 Subject: [PATCH] fix(deps):Add transition plan for GPT-3.5 Turbo to GPT-4o - A comprehensive comparison of GPT-3.5 Turbo and GPT-4o models, focusing on performance and cost improvements. - Documentation updates highlighting the planned deprecation of gpt-3.5-turbo-0301 on February 13, 2025. - Clear migration guidelines for transitioning to GPT-4o or GPT-4o mini to ensure service continuity. Signed-off-by: 100daysofdevops <47483190+100daysofdevops@users.noreply.github.com> --- cmd/auth/add.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/auth/add.go b/cmd/auth/add.go index 67370cc1b0..415c45713f 100644 --- a/cmd/auth/add.go +++ b/cmd/auth/add.go @@ -28,7 +28,7 @@ import ( const ( defaultBackend = "openai" - defaultModel = "gpt-3.5-turbo" + defaultModel = "gpt-4o" ) var addCmd = &cobra.Command{