feat: 新增执行记录实体与文件上传能力

This commit is contained in:
2026-08-18 09:47:51 +08:00
parent 155a5cad0c
commit a939c45508
67 changed files with 7341 additions and 4001 deletions
@@ -0,0 +1,15 @@
package tool
import (
toolDto "ai-agent/workflow/model/dto/tool"
toolService "ai-agent/workflow/service/tool"
"context"
)
type tool struct{}
var Tool = new(tool)
func (c *tool) List(ctx context.Context, req *toolDto.ToolListReq) (res *toolDto.ToolListRes, err error) {
return toolService.ToolService.List(ctx, req)
}