Sets whether to open an editor for instructions
(mut self, edit: bool)
| 145 | |
| 146 | /// Sets whether to open an editor for instructions |
| 147 | pub fn edit(mut self, edit: bool) -> Self { |
| 148 | self.edit = edit; |
| 149 | self |
| 150 | } |
| 151 | |
| 152 | /// Sets the AI agent to use |
| 153 | pub fn agent(mut self, agent: Option<String>) -> Self { |
no outgoing calls