package aiSearch import ( "context" "github.com/gogf/gf/v2/errors/gcode" "github.com/gogf/gf/v2/errors/gerror" "aiChat/api/aiSearch/v1" ) func (c *ControllerV1) ProblemConfiguration(ctx context.Context, req *v1.ProblemConfigurationReq) (res *v1.ProblemConfigurationRes, err error) { return nil, gerror.NewCode(gcode.CodeNotImplemented) }