Skip to content

Commit

Permalink
🎨 Update WithChoices
Browse files Browse the repository at this point in the history
  • Loading branch information
wesen committed Jan 19, 2024
1 parent fa2fdd8 commit eda6e1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/pinocchio/cmds/kagi/summarize.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@ func NewSummarizeCommand() (*SummarizeCommand, error) {
"engine",
parameters.ParameterTypeChoice,
parameters.WithHelp("Summarization engine"),
parameters.WithChoices([]string{"agnes", "cecil", "daphne", "muriel"}),
parameters.WithChoices("agnes", "cecil", "daphne", "muriel"),
parameters.WithDefault("cecil"),
),
parameters.NewParameterDefinition(
"summary_type",
parameters.ParameterTypeChoice,
parameters.WithHelp("Type of summary to generate"),
parameters.WithChoices([]string{"summary", "takeaway"}),
parameters.WithChoices("summary", "takeaway"),
parameters.WithDefault("summary"),
),
parameters.NewParameterDefinition(
Expand Down

0 comments on commit eda6e1a

Please sign in to comment.