diff options
| author | Grail Finder <wohilas@gmail.com> | 2025-12-26 10:01:49 +0300 |
|---|---|---|
| committer | Grail Finder <wohilas@gmail.com> | 2025-12-26 10:01:49 +0300 |
| commit | c0ec82b579f09af020bc236eb84fa6b22d68823b (patch) | |
| tree | b3712ab57070a3e2b387c83d4585199f51fbba49 /props_table.go | |
| parent | 3c6f9b624ec4ef6f2e92ddb2ba794a0d8cddd6cf (diff) | |
Chore: only table switch for auto clean tool calls
Diffstat (limited to 'props_table.go')
| -rw-r--r-- | props_table.go | 3 |
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) { |
