MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / set_transcript_path

Method set_transcript_path

atomic-agent/src/turn/session.rs:296–300  ·  view source on GitHub ↗

Set the transcript path if not already set.

(&mut self, path: impl Into<PathBuf>)

Source from the content-addressed store, hash-verified

294
295 /// Set the transcript path if not already set.
296 pub fn set_transcript_path(&mut self, path: impl Into<PathBuf>) {
297 if self.transcript_path.is_none() {
298 self.transcript_path = Some(path.into());
299 }
300 }
301
302 /// Clear the current prompt after recording a turn.
303 ///

Calls 1

is_noneMethod · 0.80