feat(tui): expose debug settings (#38546)

Co-authored-by: James Long <longster@gmail.com>
This commit is contained in:
opencode-agent[bot] 2026-07-23 13:37:16 -04:00 committed by GitHub
parent ad596fb42b
commit 360e7b412d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -222,6 +222,14 @@ const settings: Setting[] = [
values: [false, true],
labels: ["off", "on"],
},
{
title: "Turn token usage",
category: "Debug",
path: ["debug", "turn_tokens"],
default: false,
values: [false, true],
labels: ["off", "on"],
},
]
export function DialogConfig() {