mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-12 18:11:34 +08:00
28 lines
964 B
Go
28 lines
964 B
Go
package ai
|
|
|
|
import (
|
|
"context"
|
|
"github.com/APIParkLab/APIPark/gateway"
|
|
ai_dto "github.com/APIParkLab/APIPark/module/ai/dto"
|
|
"github.com/eolinker/go-common/autowire"
|
|
"reflect"
|
|
)
|
|
|
|
type IProviderModule interface {
|
|
Providers(ctx context.Context) ([]*ai_dto.ProviderItem, error)
|
|
SimpleProviders(ctx context.Context) ([]*ai_dto.SimpleProviderItem, error)
|
|
Provider(ctx context.Context, id string) (*ai_dto.Provider, error)
|
|
LLMs(ctx context.Context, driver string) ([]*ai_dto.LLMItem, *ai_dto.ProviderItem, error)
|
|
UpdateProviderStatus(ctx context.Context, id string, enable bool) error
|
|
UpdateProviderConfig(ctx context.Context, id string, input *ai_dto.UpdateConfig) error
|
|
UpdateProviderDefaultLLM(ctx context.Context, id string, input *ai_dto.UpdateLLM) error
|
|
}
|
|
|
|
func init() {
|
|
autowire.Auto[IProviderModule](func() reflect.Value {
|
|
module := new(imlProviderModule)
|
|
gateway.RegisterInitHandleFunc(module.initGateway)
|
|
return reflect.ValueOf(module)
|
|
})
|
|
}
|