12 lines
364 B
Go
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)
|
|
}
|