From 4e39cb65b3a7fc0d1c057c647794346e072d3fd0 Mon Sep 17 00:00:00 2001 From: 100daysofdevops <47483190+100daysofdevops@users.noreply.github.com> Date: Tue, 11 Mar 2025 13:58:21 -0700 Subject: [PATCH] fix(deps): update default model to gpt-4o for improved performance and cost efficiency (#1332) * fix: update OpenAI API key generation URL to reflect new platform link Updated the outdated URL 'https://beta.openai.com/account/api-keys' to the current OpenAI API key generation page 'https://platform.openai.com/account/api-keys'. This resolves the issue where users were directed to an incorrect URL when generating an OpenAI API key. Signed-off-by: 100daysofdevops <47483190+100daysofdevops@users.noreply.github.com> * 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> --------- Signed-off-by: 100daysofdevops <47483190+100daysofdevops@users.noreply.github.com> Co-authored-by: Alex Jones --- 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 67370cc..415c457 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{