(sessionId: string, modelKey: string)
| 505 | } |
| 506 | |
| 507 | export function recordPiLiveModel(sessionId: string, modelKey: string): void { |
| 508 | liveModelBySession.set(sessionId, modelKey); |
| 509 | } |
| 510 | |
| 511 | function summarizeTransformError(error: unknown): string { |
| 512 | const raw = error instanceof Error ? error.message : String(error); |