export.go 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package chatgpt
  2. import (
  3. "time"
  4. "github.com/avast/retry-go"
  5. "github.com/eryajf/chatgpt-dingtalk/pkg/logger"
  6. "github.com/eryajf/chatgpt-dingtalk/public"
  7. )
  8. // SingleQa 单聊
  9. func SingleQa(question, userId string) (answer string, err error) {
  10. chat := New(userId)
  11. defer chat.Close()
  12. // 定义一个重试策略
  13. retryStrategy := []retry.Option{
  14. retry.Delay(100 * time.Millisecond),
  15. retry.Attempts(3),
  16. retry.LastErrorOnly(true),
  17. }
  18. // 使用重试策略进行重试
  19. err = retry.Do(
  20. func() error {
  21. answer, err = chat.ChatWithContext(question)
  22. if err != nil {
  23. return err
  24. }
  25. return nil
  26. },
  27. retryStrategy...)
  28. return
  29. }
  30. // ContextQa 串聊
  31. func ContextQa(question, userId string) (chat *ChatGPT, answer string, err error) {
  32. chat = New(userId)
  33. if public.UserService.GetUserSessionContext(userId) != "" {
  34. err := chat.ChatContext.LoadConversation(userId)
  35. if err != nil {
  36. logger.Warning("load station failed: %v\n", err)
  37. }
  38. }
  39. retryStrategy := []retry.Option{
  40. retry.Delay(100 * time.Millisecond),
  41. retry.Attempts(3),
  42. retry.LastErrorOnly(true)}
  43. // 使用重试策略进行重试
  44. err = retry.Do(
  45. func() error {
  46. answer, err = chat.ChatWithContext(question)
  47. if err != nil {
  48. return err
  49. }
  50. return nil
  51. },
  52. retryStrategy...)
  53. return
  54. }
  55. // ImageQa 生成图片
  56. func ImageQa(question, userId string) (answer string, err error) {
  57. chat := New(userId)
  58. defer chat.Close()
  59. // 定义一个重试策略
  60. retryStrategy := []retry.Option{
  61. retry.Delay(100 * time.Millisecond),
  62. retry.Attempts(3),
  63. retry.LastErrorOnly(true),
  64. }
  65. // 使用重试策略进行重试
  66. err = retry.Do(
  67. func() error {
  68. answer, err = chat.GenreateImage(question)
  69. if err != nil {
  70. return err
  71. }
  72. return nil
  73. },
  74. retryStrategy...)
  75. return
  76. }