package gollama // Test helpers exported to _test package in the same module. func (o OptionSet) toMapForTest() (map[string]any, error) { return o.toMap() } func (o OptionSet) ToMapForTest() (map[string]any, error) { return o.toMap() } func ParseModelfileParametersForTest(parameters string) (OptionSet, error) { return parseModelfileParameters(parameters) }