generate_ai_answer_logic.go 1010 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package sop_task
  2. import (
  3. "context"
  4. "fmt"
  5. "wechat-api/hook/fastgpt"
  6. "wechat-api/internal/svc"
  7. "wechat-api/internal/types"
  8. "github.com/zeromicro/go-zero/core/logx"
  9. )
  10. type GenerateAiAnswerLogic struct {
  11. logx.Logger
  12. ctx context.Context
  13. svcCtx *svc.ServiceContext
  14. }
  15. func NewGenerateAiAnswerLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GenerateAiAnswerLogic {
  16. return &GenerateAiAnswerLogic{
  17. Logger: logx.WithContext(ctx),
  18. ctx: ctx,
  19. svcCtx: svcCtx}
  20. }
  21. func (l *GenerateAiAnswerLogic) GenerateAiAnswer(req *types.GenerateAiAnswerReq) (*types.GenerateAiAnswerResp, error) {
  22. resp := types.GenerateAiAnswerResp{}
  23. prompt := fmt.Sprintf(`
  24. 请根据用户输入的消息,优化用户输入的内容。
  25. 用户输入内容:%s
  26. `, req.Content)
  27. baseUrl := l.svcCtx.Config.Fastgpt.BASE_URL
  28. apiKey := l.svcCtx.Config.Fastgpt.API_KEY
  29. answer, err := fastgpt.ChatWithCustomConfig(baseUrl, apiKey, prompt)
  30. if err != nil {
  31. return nil, err
  32. }
  33. resp.Data = answer
  34. return &resp, nil
  35. }