mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-14 20:41:15 +08:00
112 lines
1.6 KiB
Go
112 lines
1.6 KiB
Go
package ai_local
|
|
|
|
import "time"
|
|
|
|
type LocalModel struct {
|
|
Id string
|
|
Name string
|
|
Provider string
|
|
State int
|
|
CreateAt time.Time
|
|
UpdateAt time.Time
|
|
Creator string
|
|
Updater string
|
|
}
|
|
|
|
type CreateLocalModel struct {
|
|
Id string
|
|
Name string
|
|
Provider string
|
|
State int
|
|
}
|
|
|
|
type EditLocalModel struct {
|
|
State *int
|
|
}
|
|
|
|
type LocalModelPackage struct {
|
|
Id string
|
|
Name string
|
|
Size string
|
|
Hash string
|
|
Description string
|
|
Version string
|
|
IsPopular bool
|
|
}
|
|
|
|
type CreateLocalModelPackage struct {
|
|
Id string
|
|
Name string
|
|
Size string
|
|
Hash string
|
|
Description string
|
|
Version string
|
|
Popular bool
|
|
}
|
|
|
|
type EditLocalModelPackage struct {
|
|
Size *string
|
|
Hash *string
|
|
Description *string
|
|
Version *string
|
|
Popular *bool
|
|
}
|
|
|
|
type LocalModelInstallState struct {
|
|
Id string
|
|
Complete int64
|
|
Total int64
|
|
State int
|
|
Msg string
|
|
UpdateAt time.Time
|
|
}
|
|
|
|
type CreateLocalModelInstallState struct {
|
|
Id string
|
|
Complete int64
|
|
Total int64
|
|
State int
|
|
Msg string
|
|
}
|
|
|
|
type EditLocalModelInstallState struct {
|
|
Complete *int64
|
|
Total *int64
|
|
State *int
|
|
Msg *string
|
|
}
|
|
|
|
type LocalModelCache struct {
|
|
Model string
|
|
Target string
|
|
Type CacheType
|
|
}
|
|
|
|
type CacheType string
|
|
|
|
func (c CacheType) String() string {
|
|
return string(c)
|
|
}
|
|
|
|
func (c CacheType) Int() int {
|
|
switch c {
|
|
case CacheTypeService:
|
|
return 0
|
|
default:
|
|
return 0
|
|
}
|
|
}
|
|
|
|
func FromCacheType(s int) CacheType {
|
|
switch s {
|
|
case 0:
|
|
return CacheTypeService
|
|
default:
|
|
return CacheTypeService
|
|
}
|
|
}
|
|
|
|
const (
|
|
CacheTypeService CacheType = "service"
|
|
)
|