@@ -22,17 +22,17 @@ type PromptPexOptions struct {
2222 // Core options
2323 Instructions * PromptPexPrompts `yaml:"instructions,omitempty" json:"instructions,omitempty"`
2424 Models * PromptPexModelAliases `yaml:"models,omitempty" json:"models,omitempty"`
25- TestsPerRule * int `yaml:"testsPerRule,omitempty" json:"testsPerRule,omitempty"`
26- RunsPerTest * int `yaml:"runsPerTest,omitempty" json:"runsPerTest,omitempty"`
27- MaxRules * int `yaml:"maxRules,omitempty" json:"maxRules,omitempty"`
28- MaxRulesPerTestGen * int `yaml:"maxRulesPerTestGeneration,omitempty" json:"maxRulesPerTestGeneration,omitempty"`
25+ TestsPerRule int `yaml:"testsPerRule,omitempty" json:"testsPerRule,omitempty"`
26+ RunsPerTest int `yaml:"runsPerTest,omitempty" json:"runsPerTest,omitempty"`
27+ MaxRules int `yaml:"maxRules,omitempty" json:"maxRules,omitempty"`
28+ MaxRulesPerTestGen int `yaml:"maxRulesPerTestGeneration,omitempty" json:"maxRulesPerTestGeneration,omitempty"`
2929
3030 // CLI-specific options
31- Effort * string `yaml:"effort,omitempty" json:"effort,omitempty"`
32- Prompt * string `yaml:"prompt,omitempty" json:"prompt,omitempty"`
31+ Effort string `yaml:"effort,omitempty" json:"effort,omitempty"`
32+ Prompt string `yaml:"prompt,omitempty" json:"prompt,omitempty"`
3333
3434 // Loader options
35- Verbose * bool `yaml:"verbose,omitempty" json:"verbose,omitempty"`
35+ Verbose bool `yaml:"verbose,omitempty" json:"verbose,omitempty"`
3636}
3737
3838// PromptPexContext represents the main context for PromptPex operations
0 commit comments