| 128 | // ── Model discovery ───────────────────────────────────────────────────────── |
| 129 | |
| 130 | struct ModelEntry { |
| 131 | std::string path; |
| 132 | std::string name; |
| 133 | int64_t file_size; |
| 134 | }; |
| 135 | |
| 136 | static std::vector<ModelEntry> discover_models(const std::string & dir, |
| 137 | const std::string & filter) { |
nothing calls this directly
no outgoing calls
no test coverage detected