go-ollama/export_test.go
2026-06-11 20:01:48 +02:00

12 lines
364 B
Go

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)
}