Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
jbilcke-hf/ai-comic-factory
DaenerysT
/
comicbook
like
5
Runtime error
App
Files
Files
Community
aa15a35
comicbook
/
src
/
lib
/
dirtyCaptionCleaner.ts
jbilcke-hf
HF staff
try to improve robustness of LLM responses
2f7798c
over 1 year ago
raw
Copy download link
history
blame
Safe
100 Bytes
export
function
dirtyCaptionCleaner
(
input:
string
) {
return
input.
split
(
":"
).
pop
()?.
trim
() ||
""
}