dify/web/features/new-rag/request-id.ts
Stephen Zhou eac9f69ad1
feat(dataset): add crawl source selection (#39325)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-24 07:11:48 +00:00

6 lines
130 B
TypeScript

import { v4 as uuidV4 } from 'uuid'
export function createRequestId() {
return globalThis.crypto?.randomUUID?.() ?? uuidV4()
}