Sets the path to a file containing the task prompt (contents injected into template)
(mut self, path: Option<PathBuf>)
| 133 | |
| 134 | /// Sets the path to a file containing the task prompt (contents injected into template) |
| 135 | pub fn prompt_file(mut self, path: Option<PathBuf>) -> Self { |
| 136 | self.prompt_file_path = path; |
| 137 | self |
| 138 | } |
| 139 | |
| 140 | /// Sets an existing instructions file to copy as-is (bypasses template rendering) |
| 141 | pub fn existing_instructions_file(mut self, path: Option<PathBuf>) -> Self { |
no outgoing calls