From d8a4c507c25e31a3764db62b65a3aa38a69c8ebc Mon Sep 17 00:00:00 2001 From: gered Date: Thu, 3 Oct 2024 22:09:34 -0400 Subject: [PATCH] add temperature and n options. temperature otherwise defaults to 1 --- nvim/lua/plugins/nvim-cmp.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nvim/lua/plugins/nvim-cmp.lua b/nvim/lua/plugins/nvim-cmp.lua index 3387151..5009e6e 100644 --- a/nvim/lua/plugins/nvim-cmp.lua +++ b/nvim/lua/plugins/nvim-cmp.lua @@ -81,6 +81,8 @@ return { optional = { stop = get_stop_tokens(model), max_tokens = 256, + temperature = 0.2, + n = 1, }, }, },