ollama/server/modelpath.go

147 lines
3.5 KiB
Go
Raw Permalink Normal View History

2023-07-18 13:44:21 +08:00
package server
import (
2023-08-22 12:56:56 +08:00
"errors"
2023-07-18 13:44:21 +08:00
"fmt"
"io/fs"
2023-08-22 09:38:31 +08:00
"net/url"
2023-07-18 13:44:21 +08:00
"os"
"path/filepath"
"regexp"
2023-07-18 13:44:21 +08:00
"strings"
2024-06-14 03:52:03 +08:00
"github.com/ollama/ollama/envconfig"
"github.com/ollama/ollama/types/model"
2023-07-18 13:44:21 +08:00
)
type ModelPath struct {
ProtocolScheme string
Registry string
Namespace string
Repository string
Tag string
}
const (
DefaultRegistry = "registry.ollama.ai"
DefaultNamespace = "library"
DefaultTag = "latest"
DefaultProtocolScheme = "https"
)
2023-08-22 12:56:56 +08:00
var (
ErrInvalidImageFormat = errors.New("invalid image format")
ErrInvalidDigestFormat = errors.New("invalid digest format")
ErrInvalidProtocol = errors.New("invalid protocol scheme")
ErrInsecureProtocol = errors.New("insecure protocol http")
ErrModelPathInvalid = errors.New("invalid model path")
2023-08-22 12:56:56 +08:00
)
func ParseModelPath(name string) ModelPath {
2023-08-22 12:56:56 +08:00
mp := ModelPath{
ProtocolScheme: DefaultProtocolScheme,
Registry: DefaultRegistry,
Namespace: DefaultNamespace,
Repository: "",
Tag: DefaultTag,
}
2023-07-18 13:44:21 +08:00
2023-08-22 09:38:31 +08:00
before, after, found := strings.Cut(name, "://")
if found {
mp.ProtocolScheme = before
name = after
2023-08-22 12:56:56 +08:00
}
name = strings.ReplaceAll(name, string(os.PathSeparator), "/")
2023-12-16 07:50:51 +08:00
parts := strings.Split(name, "/")
switch len(parts) {
2023-07-18 13:44:21 +08:00
case 3:
mp.Registry = parts[0]
mp.Namespace = parts[1]
mp.Repository = parts[2]
2023-07-18 13:44:21 +08:00
case 2:
mp.Namespace = parts[0]
mp.Repository = parts[1]
2023-07-18 13:44:21 +08:00
case 1:
mp.Repository = parts[0]
2023-07-18 13:44:21 +08:00
}
if repo, tag, found := strings.Cut(mp.Repository, ":"); found {
2023-08-22 12:56:56 +08:00
mp.Repository = repo
mp.Tag = tag
2023-07-18 13:44:21 +08:00
}
return mp
2023-07-18 13:44:21 +08:00
}
func (mp ModelPath) GetNamespaceRepository() string {
return fmt.Sprintf("%s/%s", mp.Namespace, mp.Repository)
}
func (mp ModelPath) GetFullTagname() string {
return fmt.Sprintf("%s/%s/%s:%s", mp.Registry, mp.Namespace, mp.Repository, mp.Tag)
}
func (mp ModelPath) GetShortTagname() string {
if mp.Registry == DefaultRegistry {
if mp.Namespace == DefaultNamespace {
return fmt.Sprintf("%s:%s", mp.Repository, mp.Tag)
}
return fmt.Sprintf("%s/%s:%s", mp.Namespace, mp.Repository, mp.Tag)
2023-07-18 13:44:21 +08:00
}
return fmt.Sprintf("%s/%s/%s:%s", mp.Registry, mp.Namespace, mp.Repository, mp.Tag)
2023-07-18 13:44:21 +08:00
}
// GetManifestPath returns the path to the manifest file for the given model path, it is up to the caller to create the directory if it does not exist.
func (mp ModelPath) GetManifestPath() (string, error) {
name := model.Name{
Host: mp.Registry,
Namespace: mp.Namespace,
Model: mp.Repository,
Tag: mp.Tag,
2024-08-28 08:56:04 +08:00
}
if !name.IsValid() {
return "", fs.ErrNotExist
}
return filepath.Join(envconfig.Models(), "manifests", name.Filepath()), nil
2023-07-18 13:44:21 +08:00
}
2023-08-22 09:38:31 +08:00
func (mp ModelPath) BaseURL() *url.URL {
return &url.URL{
Scheme: mp.ProtocolScheme,
Host: mp.Registry,
}
}
2023-07-19 00:09:45 +08:00
func GetManifestPath() (string, error) {
2024-07-04 08:07:42 +08:00
path := filepath.Join(envconfig.Models(), "manifests")
2023-09-07 05:30:08 +08:00
if err := os.MkdirAll(path, 0o755); err != nil {
return "", fmt.Errorf("%w: ensure path elements are traversable", err)
2023-09-06 08:10:40 +08:00
}
return path, nil
2023-07-19 00:09:45 +08:00
}
2023-07-18 13:44:21 +08:00
func GetBlobsPath(digest string) (string, error) {
// only accept actual sha256 digests
pattern := "^sha256[:-][0-9a-fA-F]{64}$"
re := regexp.MustCompile(pattern)
if digest != "" && !re.MatchString(digest) {
return "", ErrInvalidDigestFormat
}
digest = strings.ReplaceAll(digest, ":", "-")
2024-07-04 08:07:42 +08:00
path := filepath.Join(envconfig.Models(), "blobs", digest)
dirPath := filepath.Dir(path)
if digest == "" {
dirPath = path
}
if err := os.MkdirAll(dirPath, 0o755); err != nil {
return "", fmt.Errorf("%w: ensure path elements are traversable", err)
2023-07-18 13:44:21 +08:00
}
2023-07-19 02:24:19 +08:00
return path, nil
2023-07-18 13:44:21 +08:00
}