(mut self, path: impl Into<PathBuf>)
| 341 | /// Set the transcript path. |
| 342 | #[must_use] |
| 343 | pub fn with_transcript_path(mut self, path: impl Into<PathBuf>) -> Self { |
| 344 | self.transcript_path = Some(path.into()); |
| 345 | self |
| 346 | } |
| 347 | |
| 348 | /// Set the user prompt. |
| 349 | #[must_use] |
no outgoing calls