├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bf16.h ├── fp16.c ├── fp16.h ├── gguf-tools.c ├── gguflib.c ├── gguflib.h ├── sds.c ├── sds.h ├── sdsalloc.h └── utils ├── .gitignore ├── Makefile ├── README.md └── emb2redis.c /.gitignore: -------------------------------------------------------------------------------- 1 | gguf-tools 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/gguf-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/gguf-tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/gguf-tools/HEAD/README.md -------------------------------------------------------------------------------- /bf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/gguf-tools/HEAD/bf16.h -------------------------------------------------------------------------------- /fp16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/gguf-tools/HEAD/fp16.c -------------------------------------------------------------------------------- /fp16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/gguf-tools/HEAD/fp16.h -------------------------------------------------------------------------------- /gguf-tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/gguf-tools/HEAD/gguf-tools.c -------------------------------------------------------------------------------- /gguflib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/gguf-tools/HEAD/gguflib.c -------------------------------------------------------------------------------- /gguflib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/gguf-tools/HEAD/gguflib.h -------------------------------------------------------------------------------- /sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/gguf-tools/HEAD/sds.c -------------------------------------------------------------------------------- /sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/gguf-tools/HEAD/sds.h -------------------------------------------------------------------------------- /sdsalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/gguf-tools/HEAD/sdsalloc.h -------------------------------------------------------------------------------- /utils/.gitignore: -------------------------------------------------------------------------------- 1 | hiredis 2 | -------------------------------------------------------------------------------- /utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/gguf-tools/HEAD/utils/Makefile -------------------------------------------------------------------------------- /utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/gguf-tools/HEAD/utils/README.md -------------------------------------------------------------------------------- /utils/emb2redis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/gguf-tools/HEAD/utils/emb2redis.c --------------------------------------------------------------------------------