Understand the GGMM file format
masterGGMM is an extension of the GGML format designed for chatllm.cpp. It works by prepending a meta field to the existing Config structure. The meta field contains a JSON string that supports non-ASCII characters.
Currently, this metadata is used to provide information that can customize the model's presentation, such as the model name displayed in the application banner. While the long-term goal is to use this metadata to eliminate the Config structure entirely, it currently serves as a way to embed model-specific identity information directly into the file.
{
"model_name": "...",
"model_native_name": "..."
}