gguf 0.1.1 copy "gguf: ^0.1.1" to clipboard
gguf: ^0.1.1 copied to clipboard

GGUF file parser (to support getting information from LLM models to be run with llama.cpp)

example/example.dart

import 'package:gguf/gguf.dart';

void main() async {
  final gguf = await parseGgufFile('model.gguf');
  print('Version: ${gguf.version}');
  print('Tensors: ${gguf.tensors.length}');
  print('Metadata keys: ${gguf.metadata.keys}');
}
0
likes
160
points
31
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

GGUF file parser (to support getting information from LLM models to be run with llama.cpp)

Repository (GitHub)
View/report issues

Topics

#gguf #llamacpp #llama-cpp #llm

License

BSD-3-Clause (license)

Dependencies

json_annotation

More

Packages that depend on gguf