getTranscriptPathForSession function

String getTranscriptPathForSession(
  1. String projectDir,
  2. String sessionId
)

Get the transcript path for a specific session ID.

Implementation

String getTranscriptPathForSession(String projectDir, String sessionId) {
  return p.join(projectDir, '$sessionId.jsonl');
}