(mut self, model: impl Into<String>)
| 72 | } |
| 73 | |
| 74 | pub fn with_model(mut self, model: impl Into<String>) -> Self { |
| 75 | self.model = Some(model.into()); |
| 76 | self |
| 77 | } |
| 78 | |
| 79 | pub fn with_agent_dir(mut self, dir: impl Into<PathBuf>) -> Self { |
| 80 | self.agent_dirs.push(dir.into()); |
no outgoing calls