| 1402 | } |
| 1403 | |
| 1404 | void gguf_write_to_buf(const struct gguf_context * ctx, std::vector<int8_t> & buf, bool only_meta) { |
| 1405 | gguf_writer_buf gw(buf); |
| 1406 | gguf_write_out(ctx, gw, only_meta); |
| 1407 | } |
| 1408 | |
| 1409 | bool gguf_write_to_file(const struct gguf_context * ctx, const char * fname, bool only_meta) { |
| 1410 | FILE * file = ggml_fopen(fname, "wb"); |