Set default retry offset to 0

This commit is contained in:
Matt Low 2024-05-21 00:13:56 +00:00
parent 5c1248184b
commit f5ce970102
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ func RetryCmd(ctx *lmcli.Context) *cobra.Command {
},
}
cmd.Flags().Int("offset", 1, "Offset from the last message retry from.")
cmd.Flags().Int("offset", 0, "Offset from the last message to retry from.")
applyPromptFlags(ctx, cmd)
return cmd