From ff1a2e9f221a4c539c48b6e84143ed321add1649 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Mon, 30 Dec 2024 02:03:36 +0100 Subject: [PATCH] feat: change the step by step prompt --- lua/chatgpt_nvim/init.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lua/chatgpt_nvim/init.lua b/lua/chatgpt_nvim/init.lua index da59d25..31ae58e 100644 --- a/lua/chatgpt_nvim/init.lua +++ b/lua/chatgpt_nvim/init.lua @@ -491,8 +491,9 @@ function M.run_chatgpt_paste_command() -- We simply check if step-by-step is enabled, then provide a short note if needed if token_count > (conf.token_limit or 8000) and conf.enable_step_by_step then local step_message = [[ - It appears this requested data is quite large. Please consider handling these files step by step. - Let me know how you would like to proceed. + It appears this requested data is quite large. Please lets split the task into smaller steps + and continue step by step. + Which files would you need for the first step? ]] copy_to_clipboard(step_message) print("Step-by-step guidance copied to clipboard!")