Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
liucy98
/
tavern
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
tavern
/
SillyTavern-1.13.0
/
public
/
scripts
/
util
/
AbortReason.js
liucy98
Upload 910 files
d44b3c1
verified
2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
143 Bytes
export
class
AbortReason
{
constructor
(
reason
) {
this
.
reason
= reason;
}
toString
(
) {
return
this
.
reason
;
}
}