summaryrefslogtreecommitdiff
path: root/props_table.go
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2026-03-09 07:07:36 +0300
committerGrail Finder <wohilas@gmail.com>2026-03-09 07:07:36 +0300
commit0e42a6f069ceea40485162c014c04cf718568cfe (patch)
tree583a6a6cb91b315e506990a03fdda1b32d0fe985 /props_table.go
parent2687f38d00ceaa4f61034e3e02b9b59d08efc017 (diff)
parenta1b5f9cdc59938901123650fc0900067ac3447ca (diff)
Merge branch 'master' into feat/agent-flow
Diffstat (limited to 'props_table.go')
-rw-r--r--props_table.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/props_table.go b/props_table.go
index ec66812..d1d3680 100644
--- a/props_table.go
+++ b/props_table.go
@@ -115,18 +115,12 @@ func makePropsTable(props map[string]float32) *tview.Table {
row++
}
// Add checkboxes
- addCheckboxRow("RAG use", cfg.RAGEnabled, func(checked bool) {
- cfg.RAGEnabled = checked
- })
addCheckboxRow("Inject role", injectRole, func(checked bool) {
injectRole = checked
})
addCheckboxRow("TTS Enabled", cfg.TTS_ENABLED, func(checked bool) {
cfg.TTS_ENABLED = checked
})
- addCheckboxRow("Auto clean tool calls from context", cfg.AutoCleanToolCallsFromCtx, func(checked bool) {
- cfg.AutoCleanToolCallsFromCtx = checked
- })
addCheckboxRow("Enable Mouse", cfg.EnableMouse, func(checked bool) {
cfg.EnableMouse = checked
// Reconfigure the app's mouse setting