(prefix = 'msg_')
| 64 | // --------------------------------------------------------------------------- |
| 65 | |
| 66 | function ulid(prefix = 'msg_'): string { |
| 67 | const t = Date.now().toString(36).padStart(10, '0'); |
| 68 | const r = Math.random().toString(36).slice(2, 12).padEnd(10, '0'); |
| 69 | return `${prefix}${t}${r}`; |
| 70 | } |
| 71 | |
| 72 | /** Normalise the raw token usage shape emitted by agent-core. */ |
| 73 | function normalizeUsage(raw: unknown): { |
no test coverage detected