summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-01 00:29:48 -0500
committerJeff Carr <[email protected]>2025-09-01 00:29:48 -0500
commit4a800a7cfd6e8d59b021ff1b5a0ea9d42b89b7b3 (patch)
treef6343d4cf86e121e5874f85502a4822613e54093 /argv.go
parenteba85c6b97dbbab8b9b437e557a3dd5e6de41984 (diff)
attempts to submit data to the Gemini API
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go8
1 files changed, 5 insertions, 3 deletions
diff --git a/argv.go b/argv.go
index 314adf4..54b4900 100644
--- a/argv.go
+++ b/argv.go
@@ -27,9 +27,11 @@ type EmptyCmd struct {
}
type PlaybackCmd struct {
- List *EmptyCmd `arg:"subcommand:list" help:"list memories"`
- Long *EmptyCmd `arg:"subcommand:long" help:"show info on each chat"`
- Purge *EmptyCmd `arg:"subcommand:purge" help:"verify chat uuids & purge empty chats"`
+ Last *EmptyCmd `arg:"subcommand:last" help:"dump the last one"`
+ List *EmptyCmd `arg:"subcommand:list" help:"list memories"`
+ Long *EmptyCmd `arg:"subcommand:long" help:"show info on each chat"`
+ Purge *EmptyCmd `arg:"subcommand:purge" help:"verify chat uuids & purge empty chats"`
+ Submit *EmptyCmd `arg:"subcommand:submit" help:"convert and submit the last entry"`
}
func (args) Version() string {