Skip to content

Commit af47898

Browse files
authored
Add missing closing paren to help output (#95)
2 parents f38cd97 + bc6d759 commit af47898

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/eval/eval.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ func NewEvalCommand(cfg *command.Config) *cobra.Command {
138138
}
139139

140140
cmd.Flags().Bool("json", false, "Output results in JSON format")
141-
cmd.Flags().String("org", "", "Organization to attribute usage to (omitting will attribute usage to the current actor")
141+
cmd.Flags().String("org", "", "Organization to attribute usage to (omitting will attribute usage to the current actor)")
142142
return cmd
143143
}
144144

cmd/run/run.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ func NewRunCommand(cfg *command.Config) *cobra.Command {
422422
cmd.Flags().String("temperature", "", "Controls randomness in the response, use lower to be more deterministic.")
423423
cmd.Flags().String("top-p", "", "Controls text diversity by selecting the most probable words until a set probability is reached.")
424424
cmd.Flags().String("system-prompt", "", "Prompt the system.")
425-
cmd.Flags().String("org", "", "Organization to attribute usage to (omitting will attribute usage to the current actor")
425+
cmd.Flags().String("org", "", "Organization to attribute usage to (omitting will attribute usage to the current actor)")
426426

427427
return cmd
428428
}

0 commit comments

Comments
 (0)