From f5ce970102f6e238105bff99b41dd8568dc6cb7e Mon Sep 17 00:00:00 2001 From: Matt Low Date: Tue, 21 May 2024 00:13:56 +0000 Subject: [PATCH] Set default retry offset to 0 --- pkg/cmd/retry.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/retry.go b/pkg/cmd/retry.go index 3e6b1fe..82375cc 100644 --- a/pkg/cmd/retry.go +++ b/pkg/cmd/retry.go @@ -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