From 50312d6c0e4e316a56af4fac5082992c04b4a1f0 Mon Sep 17 00:00:00 2001 From: m3tam3re Date: Mon, 25 Mar 2024 09:51:16 +0100 Subject: [PATCH] nvim gpt-model to gpt 3.5 --- nvim/lua/custom/plugins/chatgpt.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nvim/lua/custom/plugins/chatgpt.lua b/nvim/lua/custom/plugins/chatgpt.lua index 3f03ca7..74edb4e 100644 --- a/nvim/lua/custom/plugins/chatgpt.lua +++ b/nvim/lua/custom/plugins/chatgpt.lua @@ -160,7 +160,7 @@ return { }, }, openai_params = { - model = 'gpt-4-0125-preview', + model = 'gpt-3.5-turbo-0125', frequency_penalty = 0, presence_penalty = 0, max_tokens = 1000, @@ -169,7 +169,7 @@ return { n = 1, }, openai_edit_params = { - model = 'gpt-4-0125-preview', + model = 'gpt-3.5-turbo-0125', frequency_penalty = 0, presence_penalty = 0, temperature = 0,