Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/eval/eval.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down
2 changes: 1 addition & 1 deletion cmd/run/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
Loading