Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Lorenzob
/
astra
like
0
Text Generation
Diffusers
doi:10.57967/hf/2194
llm
Model card
Files
Files and versions
Use this model
907499e
astra
/
web
/
node_modules
/
mkdirp
/
examples
/
pow.js
Lorenzob
Upload folder using huggingface_hub
19605ab
verified
about 1 year ago
raw
Copy download link
history
blame
142 Bytes
var
mkdirp =
require
(
'mkdirp'
);
mkdirp
(
'/tmp/foo/bar/baz'
,
function
(
err
) {
if
(err)
console
.
error
(err)
else
console
.
log
(
'pow!'
)
});