(mut self, path: impl Into<PathBuf>)
| 349 | /// Set the transcript path. |
| 350 | #[must_use] |
| 351 | pub fn with_transcript_path(mut self, path: impl Into<PathBuf>) -> Self { |
| 352 | self.transcript_path = Some(path.into()); |
| 353 | self |
| 354 | } |
| 355 | |
| 356 | /// Set the user prompt. |
| 357 | #[must_use] |
no outgoing calls