mirror of
https://github.com/ollama/ollama.git
synced 2026-04-21 16:25:42 +02:00
fs: move ml.Config to fs package
This commit is contained in:
committed by
Michael Yang
parent
b51e0f397c
commit
c8245f3ef3
13
fs/config.go
Normal file
13
fs/config.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package fs
|
||||
|
||||
type Config interface {
|
||||
Architecture() string
|
||||
String(string, ...string) string
|
||||
Uint(string, ...uint32) uint32
|
||||
Float(string, ...float32) float32
|
||||
Bool(string, ...bool) bool
|
||||
|
||||
Strings(string, ...[]string) []string
|
||||
Uints(string, ...[]uint32) []uint32
|
||||
Floats(string, ...[]float32) []float32
|
||||
}
|
||||
Reference in New Issue
Block a user