remove download progress clip model logs

This commit is contained in:
Abhinav 2024-01-12 10:11:10 +05:30
parent 7a7b326b6e
commit ead2ecb603

View file

@ -86,7 +86,7 @@ async function downloadModel(saveLocation: string, url: string) {
}
log.info('downloading clip model');
const resp = await fetch(url);
await writeNodeStream(saveLocation, resp.body, true);
await writeNodeStream(saveLocation, resp.body);
log.info('clip model downloaded');
}