Files
mayfly-go/server/internal/ai/tools/init.go
meilin.huang 3768cef62d feat: ai助手优化等
Co-authored-by: Copilot <copilot@github.com>
2026-04-28 22:37:10 +08:00

15 lines
321 B
Go

package tools
import (
"github.com/cloudwego/eino/schema"
)
func init() {
schema.Register[*ApprovalInfo]()
schema.Register[*InterruptResume]()
schema.Register[*ApprovalResume]()
schema.Register[*ParamCompletionResume]()
schema.Register[[]CompletionParamInfo]()
schema.Register[*ParamCompletionInterruptInfo]()
}