Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
AbdulElahGwaith
/
LocalAI
like
0
Arabic
English
localai
License:
mit
Model card
Files
Files and versions
xet
Community
main
LocalAI
/
pkg
/
utils
/
hash.go
AbdulElahGwaith
Upload folder using huggingface_hub
0f07ba7
verified
20 days ago
raw
Copy download link
history
blame
contribute
delete
124 Bytes
package
utils
import
(
"crypto/md5"
"fmt"
)
func
MD5
(s
string
)
string
{
return
fmt.Sprintf(
"%x"
, md5.Sum([]
byte
(s)))
}