fs: move ml.Config to fs package

This commit is contained in:
Michael Yang 2025-03-18 14:38:44 -07:00 committed by Michael Yang
parent e53b3cbd0c
commit 3b96a93672
16 changed files with 55 additions and 40 deletions

View file

@ -5,6 +5,7 @@ import (
"slices"
"testing"
"github.com/ollama/ollama/fs"
"github.com/ollama/ollama/ml"
"github.com/ollama/ollama/model/input"
)
@ -373,7 +374,7 @@ func TestCanResume(t *testing.T) {
type testBackend struct{}
func (b *testBackend) Config() ml.Config {
func (b *testBackend) Config() fs.Config {
panic("not implemented")
}