chore: run go fmt
Signed-off-by: Jacob Howard <jacob.howard@docker.com>
This commit is contained in:
parent
ed476dcbb8
commit
ca5fbbd8e8
|
|
@ -25,9 +25,9 @@ const (
|
|||
)
|
||||
|
||||
var (
|
||||
ShouldUseGPUVariant bool
|
||||
ShouldUseGPUVariant bool
|
||||
ShouldUseGPUVariantLock sync.Mutex
|
||||
errLlamaCppUpToDate = errors.New("bundled llama.cpp version is up to date, no need to update")
|
||||
errLlamaCppUpToDate = errors.New("bundled llama.cpp version is up to date, no need to update")
|
||||
)
|
||||
|
||||
func (l *llamaCpp) downloadLatestLlamaCpp(ctx context.Context, log logging.Logger, httpClient *http.Client,
|
||||
|
|
|
|||
|
|
@ -4,4 +4,4 @@ package llamacpp
|
|||
|
||||
import "context"
|
||||
|
||||
func CanUseGPU(context.Context, string) (bool, error) { return false, nil }
|
||||
func CanUseGPU(context.Context, string) (bool, error) { return false, nil }
|
||||
|
|
|
|||
|
|
@ -57,4 +57,4 @@ func (m *mlx) Run(ctx context.Context, socket, model string, mode inference.Back
|
|||
|
||||
func (m *mlx) Status() string {
|
||||
return "not running"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue