From 784557b9588e808cadf8f9bef07005398edf7569 Mon Sep 17 00:00:00 2001 From: Donnie Adams Date: Fri, 31 May 2024 15:10:12 -0400 Subject: [PATCH] chore: make ui and tui flags visible Signed-off-by: Donnie Adams --- pkg/cli/gptscript.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/cli/gptscript.go b/pkg/cli/gptscript.go index b2f693c4..c7df4b22 100644 --- a/pkg/cli/gptscript.go +++ b/pkg/cli/gptscript.go @@ -69,8 +69,8 @@ type GPTScript struct { ForceChat bool `usage:"Force an interactive chat session if even the top level tool is not a chat tool"` ForceSequential bool `usage:"Force parallel calls to run sequentially"` Workspace string `usage:"Directory to use for the workspace, if specified it will not be deleted on exit"` - UI bool `usage:"Launch the UI" hidden:"true" local:"true" name:"ui"` - TUI bool `usage:"Launch the TUI" hidden:"true" local:"true" name:"tui"` + UI bool `usage:"Launch the UI" local:"true" name:"ui"` + TUI bool `usage:"Launch the TUI" local:"true" name:"tui"` readData []byte }