mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-22 16:00:51 +00:00
224 lines
6.1 KiB
Go
224 lines
6.1 KiB
Go
package v2
|
|
|
|
import (
|
|
"github.com/1Panel-dev/1Panel/agent/app/api/v2/helper"
|
|
"github.com/1Panel-dev/1Panel/agent/app/dto"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// @Tags AI
|
|
// @Summary Create Ollama model
|
|
// @Accept json
|
|
// @Param request body dto.OllamaModelName true "request"
|
|
// @Success 200
|
|
// @Security ApiKeyAuth
|
|
// @Security Timestamp
|
|
// @Router /ai/ollama/model [post]
|
|
// @x-panel-log {"bodyKeys":["name"],"paramKeys":[],"BeforeFunctions":[],"formatZH":"添加 Ollama 模型 [name]","formatEN":"add Ollama model [name]"}
|
|
func (b *BaseApi) CreateOllamaModel(c *gin.Context) {
|
|
var req dto.OllamaModelName
|
|
if err := helper.CheckBindAndValidate(&req, c); err != nil {
|
|
return
|
|
}
|
|
|
|
if err := aiToolService.Create(req); err != nil {
|
|
helper.BadRequest(c, err)
|
|
return
|
|
}
|
|
helper.SuccessWithData(c, nil)
|
|
}
|
|
|
|
// @Tags AI
|
|
// @Summary Rereate Ollama model
|
|
// @Accept json
|
|
// @Param request body dto.OllamaModelName true "request"
|
|
// @Success 200
|
|
// @Security ApiKeyAuth
|
|
// @Security Timestamp
|
|
// @Router /ai/ollama/model/recreate [post]
|
|
// @x-panel-log {"bodyKeys":["name"],"paramKeys":[],"BeforeFunctions":[],"formatZH":"添加 Ollama 模型重试 [name]","formatEN":"re-add Ollama model [name]"}
|
|
func (b *BaseApi) RecreateOllamaModel(c *gin.Context) {
|
|
var req dto.OllamaModelName
|
|
if err := helper.CheckBindAndValidate(&req, c); err != nil {
|
|
return
|
|
}
|
|
|
|
if err := aiToolService.Recreate(req); err != nil {
|
|
helper.BadRequest(c, err)
|
|
return
|
|
}
|
|
helper.SuccessWithData(c, nil)
|
|
}
|
|
|
|
// @Tags AI
|
|
// @Summary Close Ollama model conn
|
|
// @Accept json
|
|
// @Param request body dto.OllamaModelName true "request"
|
|
// @Success 200
|
|
// @Security ApiKeyAuth
|
|
// @Security Timestamp
|
|
// @Router /ai/ollama/close [post]
|
|
// @x-panel-log {"bodyKeys":["name"],"paramKeys":[],"BeforeFunctions":[],"formatZH":"关闭 Ollama 模型连接 [name]","formatEN":"close conn for Ollama model [name]"}
|
|
func (b *BaseApi) CloseOllamaModel(c *gin.Context) {
|
|
var req dto.OllamaModelName
|
|
if err := helper.CheckBindAndValidate(&req, c); err != nil {
|
|
return
|
|
}
|
|
|
|
if err := aiToolService.Close(req.Name); err != nil {
|
|
helper.BadRequest(c, err)
|
|
return
|
|
}
|
|
helper.SuccessWithData(c, nil)
|
|
}
|
|
|
|
// @Tags AI
|
|
// @Summary Sync Ollama model list
|
|
// @Success 200 {array} dto.OllamaModelDropList
|
|
// @Security ApiKeyAuth
|
|
// @Security Timestamp
|
|
// @Router /ai/ollama/model/sync [post]
|
|
// @x-panel-log {"bodyKeys":[],"paramKeys":[],"BeforeFunctions":[],"formatZH":"同步 Ollama 模型列表","formatEN":"sync Ollama model list"}
|
|
func (b *BaseApi) SyncOllamaModel(c *gin.Context) {
|
|
list, err := aiToolService.Sync()
|
|
if err != nil {
|
|
helper.BadRequest(c, err)
|
|
return
|
|
}
|
|
helper.SuccessWithData(c, list)
|
|
}
|
|
|
|
// @Tags AI
|
|
// @Summary Page Ollama models
|
|
// @Accept json
|
|
// @Param request body dto.SearchWithPage true "request"
|
|
// @Success 200 {object} dto.PageResult
|
|
// @Security ApiKeyAuth
|
|
// @Security Timestamp
|
|
// @Router /ai/ollama/model/search [post]
|
|
func (b *BaseApi) SearchOllamaModel(c *gin.Context) {
|
|
var req dto.SearchWithPage
|
|
if err := helper.CheckBindAndValidate(&req, c); err != nil {
|
|
return
|
|
}
|
|
|
|
total, list, err := aiToolService.Search(req)
|
|
if err != nil {
|
|
helper.BadRequest(c, err)
|
|
return
|
|
}
|
|
|
|
helper.SuccessWithData(c, dto.PageResult{
|
|
Items: list,
|
|
Total: total,
|
|
})
|
|
}
|
|
|
|
// @Tags AI
|
|
// @Summary Page Ollama models
|
|
// @Accept json
|
|
// @Param request body dto.OllamaModelName true "request"
|
|
// @Success 200 {string} details
|
|
// @Security ApiKeyAuth
|
|
// @Security Timestamp
|
|
// @Router /ai/ollama/model/load [post]
|
|
func (b *BaseApi) LoadOllamaModelDetail(c *gin.Context) {
|
|
var req dto.OllamaModelName
|
|
if err := helper.CheckBindAndValidate(&req, c); err != nil {
|
|
return
|
|
}
|
|
|
|
detail, err := aiToolService.LoadDetail(req.Name)
|
|
if err != nil {
|
|
helper.BadRequest(c, err)
|
|
return
|
|
}
|
|
|
|
helper.SuccessWithData(c, detail)
|
|
}
|
|
|
|
// @Tags AI
|
|
// @Summary Delete Ollama model
|
|
// @Accept json
|
|
// @Param request body dto.ForceDelete true "request"
|
|
// @Success 200
|
|
// @Security ApiKeyAuth
|
|
// @Security Timestamp
|
|
// @Router /ai/ollama/model/del [post]
|
|
// @x-panel-log {"bodyKeys":["ids"],"paramKeys":[],"BeforeFunctions":[{"input_column":"id","input_value":"ids","isList":true,"db":"ollama_models","output_column":"name","output_value":"names"}],"formatZH":"删除 Ollama 模型 [names]","formatEN":"remove Ollama model [names]"}
|
|
func (b *BaseApi) DeleteOllamaModel(c *gin.Context) {
|
|
var req dto.ForceDelete
|
|
if err := helper.CheckBindAndValidate(&req, c); err != nil {
|
|
return
|
|
}
|
|
|
|
if err := aiToolService.Delete(req); err != nil {
|
|
helper.BadRequest(c, err)
|
|
return
|
|
}
|
|
|
|
helper.Success(c)
|
|
}
|
|
|
|
// @Tags AI
|
|
// @Summary Bind domain
|
|
// @Accept json
|
|
// @Param request body dto.OllamaBindDomain true "request"
|
|
// @Success 200
|
|
// @Security ApiKeyAuth
|
|
// @Security Timestamp
|
|
// @Router /ai/domain/bind [post]
|
|
func (b *BaseApi) BindDomain(c *gin.Context) {
|
|
var req dto.OllamaBindDomain
|
|
if err := helper.CheckBindAndValidate(&req, c); err != nil {
|
|
return
|
|
}
|
|
if err := aiToolService.BindDomain(req); err != nil {
|
|
helper.BadRequest(c, err)
|
|
return
|
|
}
|
|
helper.Success(c)
|
|
}
|
|
|
|
// @Tags AI
|
|
// @Summary Get bind domain
|
|
// @Accept json
|
|
// @Param request body dto.OllamaBindDomainReq true "request"
|
|
// @Success 200 {object} dto.OllamaBindDomainRes
|
|
// @Security ApiKeyAuth
|
|
// @Security Timestamp
|
|
// @Router /ai/domain/get [post]
|
|
func (b *BaseApi) GetBindDomain(c *gin.Context) {
|
|
var req dto.OllamaBindDomainReq
|
|
if err := helper.CheckBindAndValidate(&req, c); err != nil {
|
|
return
|
|
}
|
|
res, err := aiToolService.GetBindDomain(req)
|
|
if err != nil {
|
|
helper.BadRequest(c, err)
|
|
return
|
|
}
|
|
helper.SuccessWithData(c, res)
|
|
}
|
|
|
|
// @Tags AI
|
|
// @Summary Update bind domain
|
|
// @Accept json
|
|
// @Param request body dto.OllamaBindDomain true "request"
|
|
// @Success 200
|
|
// @Security ApiKeyAuth
|
|
// @Security Timestamp
|
|
// @Router /ai/domain/update [post]
|
|
// @x-panel-log {"bodyKeys":["domain"],"paramKeys":[],"BeforeFunctions":[],"formatZH":"更新 Ollama 绑定域名 [domain]","formatEN":"update Ollama bind domain [domain]"}
|
|
func (b *BaseApi) UpdateBindDomain(c *gin.Context) {
|
|
var req dto.OllamaBindDomain
|
|
if err := helper.CheckBindAndValidate(&req, c); err != nil {
|
|
return
|
|
}
|
|
if err := aiToolService.UpdateBindDomain(req); err != nil {
|
|
helper.BadRequest(c, err)
|
|
return
|
|
}
|
|
helper.Success(c)
|
|
}
|