gguf : write metadata in gguf_file_saver

This commit is contained in:
M. Yusuf Sarıgöz 2023-08-11 20:07:43 +03:00
parent 781b9ec3f5
commit d09fd10713
3 changed files with 38 additions and 1 deletions

1
ggml.h
View file

@ -1748,6 +1748,7 @@ extern "C" {
GGML_API int gguf_find_key(struct gguf_context * ctx, const char * key);
GGML_API const char * gguf_get_key (struct gguf_context * ctx, int i);
GGML_API enum gguf_type gguf_get_kv_type (struct gguf_context * ctx, int i);
GGML_API enum gguf_type gguf_get_arr_type (struct gguf_context * ctx, int i);
GGML_API void gguf_get_val (struct gguf_context * ctx, int i, void * val);
GGML_API const char * gguf_get_arr_str(struct gguf_context * ctx, int key_id, int i);