(now?: number)
| 62 | * @returns A new session state initialized to zero turns |
| 63 | */ |
| 64 | export function createSessionState(now?: number): SessionState { |
| 65 | return { |
| 66 | startTime: now ?? Date.now(), |
| 67 | turnCount: 0, |
| 68 | toolStartTimes: new Map(), |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | // ============================================================================= |
| 73 | // Session Store |
no outgoing calls
no test coverage detected