Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jbilcke-hf
/
ai-tube
like
283
Running
App
Files
Files
Community
10
5513dc6
ai-tube
/
src
/
app
/
api
/
parsers
/
parsePromptFileName.ts
jbilcke-hf
HF staff
upgraded to @aitube/client 0.0.12
f24ad59
8 months ago
raw
Copy download link
history
blame
Safe
139 Bytes
export
function
parsePromptFileName
(
filePath:
string
):
string
{
return
(filePath ||
""
).
replaceAll
(
"prompt_"
,
""
).
replaceAll
(
".md"
,
""
)
}