From bc6d759429253b064b5061e90e8be06ac129e1e8 Mon Sep 17 00:00:00 2001 From: David Sanders Date: Wed, 8 Oct 2025 21:58:42 -0700 Subject: [PATCH] Add missing closing paren to help output --- cmd/eval/eval.go | 2 +- cmd/run/run.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/eval/eval.go b/cmd/eval/eval.go index 566bd0df..a8ed152a 100644 --- a/cmd/eval/eval.go +++ b/cmd/eval/eval.go @@ -138,7 +138,7 @@ func NewEvalCommand(cfg *command.Config) *cobra.Command { } cmd.Flags().Bool("json", false, "Output results in JSON format") - cmd.Flags().String("org", "", "Organization to attribute usage to (omitting will attribute usage to the current actor") + cmd.Flags().String("org", "", "Organization to attribute usage to (omitting will attribute usage to the current actor)") return cmd } diff --git a/cmd/run/run.go b/cmd/run/run.go index 0eec215b..e4d4ce6b 100644 --- a/cmd/run/run.go +++ b/cmd/run/run.go @@ -422,7 +422,7 @@ func NewRunCommand(cfg *command.Config) *cobra.Command { cmd.Flags().String("temperature", "", "Controls randomness in the response, use lower to be more deterministic.") cmd.Flags().String("top-p", "", "Controls text diversity by selecting the most probable words until a set probability is reached.") cmd.Flags().String("system-prompt", "", "Prompt the system.") - cmd.Flags().String("org", "", "Organization to attribute usage to (omitting will attribute usage to the current actor") + cmd.Flags().String("org", "", "Organization to attribute usage to (omitting will attribute usage to the current actor)") return cmd }