Add support for creating online models and integrating custom model providers

This commit is contained in:
sunanzhi
2025-03-06 17:42:17 +08:00
parent 7a84c5aec3
commit b9f6abc9b3
53 changed files with 1796 additions and 33 deletions
+22
View File
@@ -0,0 +1,22 @@
package ai_model
import (
model_dto "github.com/APIParkLab/APIPark/module/ai-model/dto"
"github.com/gin-gonic/gin"
"reflect"
"github.com/eolinker/go-common/autowire"
)
type IProviderModelModule interface {
AddProviderModel(ctx *gin.Context, provider string, input *model_dto.Model) (*model_dto.SimpleModel, error)
UpdateProviderModel(ctx *gin.Context, provider string, input *model_dto.EditModel) error
DeleteProviderModel(ctx *gin.Context, provider string, id string) error
}
func init() {
autowire.Auto[IProviderModelModule](func() reflect.Value {
module := new(imlProviderModelModule)
return reflect.ValueOf(module)
})
}