feat: set custom cache directory (#227)

This commit is contained in:
Kartikeya Mishra
2025-07-01 02:22:07 +05:30
committed by GitHub
parent 4b647d371e
commit 2760831139

View File

@@ -150,6 +150,12 @@ export class KokoroTTS {
}
export const env = {
set cacheDir(value) {
hf.cacheDir = value
},
get cacheDir() {
return hf.cacheDir
},
set wasmPaths(value) {
hf.backends.onnx.wasm.wasmPaths = value;
},