From 3eb05e44b693abcaefd61ded0177da56b350c292 Mon Sep 17 00:00:00 2001 From: lance knickerbocker <121384508+freelancelance17@users.noreply.github.com> Date: Sat, 10 Feb 2024 18:03:04 -0500 Subject: [PATCH 1/2] updated default to gpt-4 --- lua/codegpt/commands_list.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/codegpt/commands_list.lua b/lua/codegpt/commands_list.lua index 6ed1a8c..7b0e370 100644 --- a/lua/codegpt/commands_list.lua +++ b/lua/codegpt/commands_list.lua @@ -3,7 +3,7 @@ local Ui = require("codegpt.ui") local CommandsList = {} local cmd_default = { - model = "gpt-3.5-turbo", + model = "gpt-4", max_tokens = 4096, temperature = 0.8, number_of_choices = 1, From cfb307d9a1395a0a54b84814ba1b9768ce054598 Mon Sep 17 00:00:00 2001 From: lance knickerbocker Date: Wed, 29 May 2024 19:31:35 -0400 Subject: [PATCH 2/2] updating to gpt4o --- lua/codegpt/commands_list.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/codegpt/commands_list.lua b/lua/codegpt/commands_list.lua index 909f07a..376eb80 100644 --- a/lua/codegpt/commands_list.lua +++ b/lua/codegpt/commands_list.lua @@ -3,7 +3,7 @@ local Ui = require("codegpt.ui") local CommandsList = {} local cmd_default = { - model = "gpt-4", + model = "gpt-4o", max_tokens = 4096, temperature = 0.8, number_of_choices = 1,