| 10 | #include <string> |
| 11 | |
| 12 | llama_model_saver::llama_model_saver(const struct llama_model & model) : model(model), llm_kv(model.arch) { |
| 13 | gguf_ctx = gguf_init_empty(); |
| 14 | } |
| 15 | |
| 16 | llama_model_saver::~llama_model_saver() { |
| 17 | gguf_free(gguf_ctx); |
nothing calls this directly
no test coverage detected