diff --git a/discover.go b/discover.go index 44b0872..3d48ffc 100644 --- a/discover.go +++ b/discover.go @@ -10,7 +10,7 @@ import ( // structured information about each. Files that cannot be parsed are skipped. // // models, err := rocm.DiscoverModels("/data/lem/gguf") -// for _, m := range models { core.Print(c, "%s %s ctx=%d", m.Name, m.Quantisation, m.ContextLen) } +// for _, model := range models { core.Print(c, "%s %s ctx=%d", model.Name, model.Quantisation, model.ContextLen) } func DiscoverModels(dir string) ([]ModelInfo, error) { matches := core.PathGlob(core.Path(dir, "*.gguf"))