ai-tube / src /app /api /parsers /parsePromptFileName.ts
jbilcke-hf's picture
jbilcke-hf HF staff
upgraded to @aitube/client 0.0.12
f24ad59
raw
history blame
139 Bytes
export function parsePromptFileName(filePath: string): string {
return (filePath || "").replaceAll("prompt_", "").replaceAll(".md", "")
}