llama_model_desc method
Get a string describing the model type
Implementation
int llama_model_desc(
ffi.Pointer<llama_model> model,
ffi.Pointer<ffi.Char> buf,
int buf_size,
) {
return _llama_model_desc(
model,
buf,
buf_size,
);
}