diff options
| author | Castor Regex <[email protected]> | 2025-08-24 13:23:12 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-24 13:23:12 -0500 |
| commit | a9b7fca08d612799b976c4ca80716e575546e1c4 (patch) | |
| tree | 24ed561c0838b25beeb630899a783159ed7af867 /argv.go | |
| parent | 82eba977cdfc2c8e9d82655d0e7045337f7f2a15 (diff) | |
feat(chat): add --get-next-auto-topic flag
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -17,12 +17,12 @@ type args struct { Input string `arg:"--input" help:"should get a string from regex-cli"` ImportFile string `arg:"--import" help:"import a file from regex-cli"` Stats []string `arg:"--stats" help:"add stats to a chat"` - NewChat []string `arg:"--new-chat" help:"create a new chat"` - CountAuto bool `arg:"--count-auto" help:"count the number of auto chats"` - Force bool `arg:"--force" help:"try to strong arm things"` - Verbose bool `arg:"--verbose" help:"show more output"` - Bash bool `arg:"--bash" help:"generate bash completion"` - BashAuto []string `arg:"--auto-complete" help:"todo: move this to go-arg"` + NewChat []string `arg:"--new-chat" help:"create a new chat"` + GetNextAutoTopic bool `arg:"--get-next-auto-topic" help:"get the next auto topic name"` + Force bool `arg:"--force" help:"try to strong arm things"` + Verbose bool `arg:"--verbose" help:"show more output"` + Bash bool `arg:"--bash" help:"generate bash completion"` + BashAuto []string `arg:"--auto-complete" help:"todo: move this to go-arg"` } type EmptyCmd struct { |
