( agentId: string, subdir: string, )
| 234 | const agentTranscriptSubdirs = new Map<string, string>() |
| 235 | |
| 236 | export function setAgentTranscriptSubdir( |
| 237 | agentId: string, |
| 238 | subdir: string, |
| 239 | ): void { |
| 240 | agentTranscriptSubdirs.set(agentId, subdir) |
| 241 | } |
| 242 | |
| 243 | export function clearAgentTranscriptSubdir(agentId: string): void { |
| 244 | agentTranscriptSubdirs.delete(agentId) |