branch: externals/minuet commit bee2c3b1c91761a896b6fc3416644cb616c05c64 Author: Milan Glacier <d...@milanglacier.com> Commit: Milan Glacier <d...@milanglacier.com>
feat!: change default context window to 16000 --- README.md | 2 +- minuet.el | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6d30a7c699..d0ec4b5c09 100644 --- a/README.md +++ b/README.md @@ -203,7 +203,7 @@ model or code completion (FIM) model. The maximum total characters of the context before and after cursor. This limits how much surrounding code is sent to the LLM for context. -The default is 12800, which roughly equates to 4000 tokens after +The default is 16000, which roughly equates to 4000 tokens after tokenization. ## minuet-context-ratio diff --git a/minuet.el b/minuet.el index 7f0abe625b..897d3f3a46 100644 --- a/minuet.el +++ b/minuet.el @@ -106,9 +106,11 @@ Must be one of the supported providers: codestral, openai, claude, etc." (const :tag "Gemini" gemini)) :group 'minuet) -(defcustom minuet-context-window 12800 +(defcustom minuet-context-window 16000 "The maximum total characters of the context before and after cursor. -This limits how much surrounding code is sent to the LLM for context." +This limits how much surrounding code is sent to the LLM for context. +The default is 16000 characters which would roughly equate 4000 +tokens." :type 'integer :group 'minuet)