duzhong's picture
Upload folder using huggingface_hub
84602ce verified
export class AbortReason {
constructor(reason) {
this.reason = reason;
}
toString() {
return this.reason;
}
}