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 }