ai-stories-factory / src /lib /utils /isRateLimitError.ts
jbilcke-hf's picture
jbilcke-hf HF staff
add login
58379d0
raw
history blame
163 Bytes
export function isRateLimitError(something: unknown) {
// yeah this is a very crude implementation
return `${something || ""}`.includes("Rate Limit Reached")
}