Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
echodict
/
llama.cpp
like
0
Modalities:
Text
Formats:
text
Size:
< 1K
ArXiv:
arxiv:
2302.13971
arxiv:
2005.14165
arxiv:
2203.02155
Libraries:
Datasets
Croissant
Dataset card
Data Studio
Files
Files and versions
xet
Community
main
llama.cpp
/
tools
/
server
/
webui
/
src
/
lib
/
utils
/
uuid.ts
dlxj
todo: 基于 CUDA 13.0 编译
2517be1
14 days ago
raw
Copy download link
history
blame
contribute
delete
121 Bytes
export
function
uuid
(
):
string
{
return
globalThis.
crypto
?.
randomUUID
?.() ??
Math
.
random
().
toString
(
36
).
substring
(
2
);
}