()
| 12 | |
| 13 | /** User message IDs: user-{timestamp}-{random} */ |
| 14 | export const createUserMessageId = (): string => `user-${Date.now()}-${randomSuffix(9)}`; |
| 15 | |
| 16 | /** Assistant message IDs: assistant-{timestamp}-{random} */ |
| 17 | export const createAssistantMessageId = (): string => `assistant-${Date.now()}-${randomSuffix(9)}`; |
no test coverage detected