From eb44b1e4b244e5a93e7d465b14df39819d8dfaba Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Fri, 16 Jan 2026 16:53:19 +0300 Subject: Feat: impl attempt --- config.example.toml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'config.example.toml') diff --git a/config.example.toml b/config.example.toml index 3a5401b..85b2662 100644 --- a/config.example.toml +++ b/config.example.toml @@ -43,3 +43,5 @@ DBPATH = "gflt.db" FilePickerDir = "." # Directory where file picker should start FilePickerExts = "png,jpg,jpeg,gif,webp" # Comma-separated list of allowed file extensions for file picker EnableMouse = false # Enable mouse support in the UI +CharSpecificContextEnabled = false +CharSpecificContextTag = "__known_to_chars__" -- cgit v1.2.3 From 0f5bbaa94390cd4d11facc8b2e7fb825b128ef31 Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Tue, 3 Feb 2026 12:04:20 +0300 Subject: Enha: update config --- config.example.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'config.example.toml') diff --git a/config.example.toml b/config.example.toml index 85b2662..82aa5f5 100644 --- a/config.example.toml +++ b/config.example.toml @@ -19,7 +19,7 @@ AssistantRole = "assistant" SysDir = "sysprompts" ChunkLimit = 100000 AutoScrollEnabled = true -# AutoCleanToolCallsFromCtx = false +AutoCleanToolCallsFromCtx = false # rag settings RAGBatchSize = 1 RAGWordLimit = 80 @@ -39,9 +39,12 @@ WhisperBinaryPath = "./batteries/whisper.cpp/build/bin/whisper-cli" # Path to wh WhisperModelPath = "./batteries/whisper.cpp/ggml-large-v3-turbo-q5_0.bin" # Path to whisper model file (for WHISPER_BINARY mode) STT_LANG = "en" # Language for speech recognition (for WHISPER_BINARY mode) STT_SR = 16000 # Sample rate for audio recording +# DBPATH = "gflt.db" FilePickerDir = "." # Directory where file picker should start FilePickerExts = "png,jpg,jpeg,gif,webp" # Comma-separated list of allowed file extensions for file picker EnableMouse = false # Enable mouse support in the UI -CharSpecificContextEnabled = false +# character specific context +CharSpecificContextEnabled = true CharSpecificContextTag = "__known_to_chars__" +AutoTurn = true -- cgit v1.2.3 From 5e7ddea6827765ac56155577cf7dcc809fe1128c Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Mon, 9 Feb 2026 09:44:54 +0300 Subject: Enha: change __known_by_char tag to @ --- config.example.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config.example.toml') diff --git a/config.example.toml b/config.example.toml index 82aa5f5..1b466eb 100644 --- a/config.example.toml +++ b/config.example.toml @@ -46,5 +46,5 @@ FilePickerExts = "png,jpg,jpeg,gif,webp" # Comma-separated list of allowed file EnableMouse = false # Enable mouse support in the UI # character specific context CharSpecificContextEnabled = true -CharSpecificContextTag = "__known_to_chars__" +CharSpecificContextTag = "@" AutoTurn = true -- cgit v1.2.3