MCPcopy Create free account
hub / github.com/GongShichen/LuminaCode / AvailableProfiles

Function AvailableProfiles

benchmark/profiles.go:39–46  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

37}
38
39func AvailableProfiles() []string {
40 names := make([]string, 0, len(profiles))
41 for name := range profiles {
42 names = append(names, name)
43 }
44 sort.Strings(names)
45 return names
46}
47
48func GetProfile(name string) (VariantOverride, error) {
49 profile, ok := profiles[name]

Callers 2

GetProfileFunction · 0.85

Calls

no outgoing calls