| 513 | }; |
| 514 | |
| 515 | struct LLM_KV { |
| 516 | LLM_KV(llm_arch arch, const char * suffix = nullptr); |
| 517 | |
| 518 | llm_arch arch; |
| 519 | const char * suffix; |
| 520 | |
| 521 | std::string operator()(llm_kv kv) const; |
| 522 | }; |
| 523 | |
| 524 | // helper to handle gguf constants |
| 525 | // usage: |
no outgoing calls
no test coverage detected