This commit is contained in:
ilopezluna 2025-07-10 11:37:40 +02:00
parent 17fe98de99
commit c532a6f835
No known key found for this signature in database
GPG Key ID: 5171774528BC2462
1 changed files with 5 additions and 0 deletions

View File

@ -1,6 +1,7 @@
package llamacpp
import (
"errors"
"runtime"
"strconv"
"testing"
@ -251,6 +252,10 @@ type fakeModel struct {
config types.Config
}
func (f *fakeModel) MMPROJPath() (string, error) {
return "", errors.New("not found")
}
func (f *fakeModel) ID() (string, error) {
panic("shouldn't be called")
}