feat: remove old prompt_chat_limit

This commit is contained in:
2025-02-14 15:26:28 +01:00
parent a5bad60d8e
commit 32fcc2622f
4 changed files with 3 additions and 41 deletions

View File

@@ -57,7 +57,7 @@ function M.load()
initial_prompt = "",
directories = { "." },
default_prompt_blocks = {},
prompt_char_limit = 300000,
-- Removed prompt_char_limit
project_name = "",
debug = false,
initial_files = {},
@@ -109,9 +109,7 @@ function M.load()
if type(result.default_prompt_blocks) == "table" then
config.default_prompt_blocks = result.default_prompt_blocks
end
if type(result.prompt_char_limit) == "number" then
config.prompt_char_limit = result.prompt_char_limit
end
-- Removed prompt_char_limit handling
if type(result.project_name) == "string" then
config.project_name = result.project_name
end