Files
OpenPipe-llm/src/utils/generateChannel.ts
2023-07-03 20:22:38 -07:00

6 lines
173 B
TypeScript

// generate random channel id
export const generateChannel = () => {
return Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);
};