Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
210 Bytes
import { createId } from "@paralleldrive/cuid2";
import { z } from "zod";
export const idSchema = z
.string()
.cuid2()
.default(createId())
.describe("Unique identifier for the item in Cuid2 format");