(overrides []string)
| 51 | type Opt func(*loadOptions) error |
| 52 | |
| 53 | func WithModelOverrides(overrides []string) Opt { |
| 54 | return func(opts *loadOptions) error { |
| 55 | opts.modelOverrides = overrides |
| 56 | return nil |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | // WithPromptFiles adds additional prompt files to all agents. |
| 61 | // These are merged with any prompt files defined in the agent config. |
no outgoing calls