mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-14 20:41:15 +08:00
84 lines
2.0 KiB
Go
84 lines
2.0 KiB
Go
package ai
|
|
|
|
import (
|
|
"context"
|
|
"encoding/base64"
|
|
"errors"
|
|
"github.com/APIParkLab/APIPark/service/universally"
|
|
"github.com/APIParkLab/APIPark/stores/ai"
|
|
"github.com/eolinker/go-common/auto"
|
|
"github.com/eolinker/go-common/utils"
|
|
"gorm.io/gorm"
|
|
"time"
|
|
)
|
|
|
|
var _ IProviderService = (*imlProviderService)(nil)
|
|
|
|
type imlProviderService struct {
|
|
universally.IServiceGet[Provider]
|
|
store ai.IProviderStore `autowired:""`
|
|
}
|
|
|
|
func (i *imlProviderService) Save(ctx context.Context, id string, cfg *SetProvider) error {
|
|
userId := utils.UserId(ctx)
|
|
now := time.Now()
|
|
info, err := i.store.First(ctx, map[string]interface{}{"uuid": id})
|
|
if err != nil {
|
|
if !errors.Is(err, gorm.ErrRecordNotFound) {
|
|
return err
|
|
}
|
|
if cfg.Name == nil || cfg.Config == nil || cfg.DefaultLLM == nil {
|
|
return errors.New("invalid params")
|
|
}
|
|
status := false
|
|
if cfg.Status != nil {
|
|
status = *cfg.Status
|
|
}
|
|
info = &ai.Provider{
|
|
UUID: id,
|
|
Name: *cfg.Name,
|
|
DefaultLLM: *cfg.DefaultLLM,
|
|
Config: base64.RawStdEncoding.EncodeToString([]byte(*cfg.Config)),
|
|
Status: status,
|
|
Creator: userId,
|
|
Updater: userId,
|
|
CreateAt: now,
|
|
UpdateAt: now,
|
|
}
|
|
} else {
|
|
if cfg.Name != nil {
|
|
info.Name = *cfg.Name
|
|
}
|
|
if cfg.Config != nil {
|
|
info.Config = base64.RawStdEncoding.EncodeToString([]byte(*cfg.Config))
|
|
}
|
|
if cfg.DefaultLLM != nil {
|
|
info.DefaultLLM = *cfg.DefaultLLM
|
|
}
|
|
if cfg.Status != nil {
|
|
info.Status = *cfg.Status
|
|
}
|
|
info.Updater = userId
|
|
info.UpdateAt = now
|
|
}
|
|
return i.store.Save(ctx, info)
|
|
}
|
|
|
|
func (i *imlProviderService) GetLabels(ctx context.Context, ids ...string) map[string]string {
|
|
if len(ids) == 0 {
|
|
return nil
|
|
}
|
|
list, err := i.store.ListQuery(ctx, "`uuid` in (?)", []interface{}{ids}, "id")
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
return utils.SliceToMapO(list, func(i *ai.Provider) (string, string) {
|
|
return i.UUID, i.Name
|
|
})
|
|
}
|
|
|
|
func (i *imlProviderService) OnComplete() {
|
|
i.IServiceGet = universally.NewGet[Provider, ai.Provider](i.store, FromEntity)
|
|
auto.RegisterService("ai_provider", i)
|
|
}
|