package v1 import ( "context" "github.com/gogf/gf/v2/errors/gcode" "github.com/gogf/gf/v2/errors/gerror" "aiChat/api/v1/aiChat" ) func (c *ControllerAiChat) Evaluate(ctx context.Context, req *aiChat.EvaluateReq) (res *aiChat.EvaluateRes, err error) { return nil, gerror.NewCode(gcode.CodeNotImplemented) }