()
| 15 | |
| 16 | /** Assistant message IDs: assistant-{timestamp}-{random} */ |
| 17 | export const createAssistantMessageId = (): string => `assistant-${Date.now()}-${randomSuffix(9)}`; |
| 18 | |
| 19 | /** File snapshot message IDs: file-snapshot-{timestamp}-{random} */ |
| 20 | export const createFileSnapshotMessageId = (): string => |
no test coverage detected