summaryrefslogtreecommitdiff
path: root/props_table.go
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2025-12-28 00:06:09 +0300
committerGrail Finder <wohilas@gmail.com>2025-12-28 00:06:09 +0300
commitcae7dea2e7c149edd055b542a2a08b53af8a0ac8 (patch)
tree5e387c1e6197b91b945fbff01218df45cad86ca2 /props_table.go
parent29becaa8c83c8dff8af7623ca71e8021319887ab (diff)
parent9d91685e9adde94d20313fb405c4301b4dd59a75 (diff)
Merge branch 'master' into doc/tutorial
Diffstat (limited to 'props_table.go')
-rw-r--r--props_table.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/props_table.go b/props_table.go
index 0c49056..d86e0b4 100644
--- a/props_table.go
+++ b/props_table.go
@@ -129,6 +129,9 @@ func makePropsTable(props map[string]float32) *tview.Table {
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
+ })
// Add dropdowns
logLevels := []string{"Debug", "Info", "Warn"}
addListPopupRow("Set log level", logLevels, GetLogLevel(), func(option string) {