ai-clip-factory / src /app /server /utils /isRateLimitError.ts
jbilcke-hf's picture
jbilcke-hf HF staff
adding rate limiter
ee5bd94
raw
history blame
163 Bytes
export function isRateLimitError(something: unknown) {
// yeah this is a very crude implementation
return `${something || ""}`.includes("Rate Limit Reached")
}