123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- package chatgpt
- import (
- "time"
- "github.com/avast/retry-go"
- "github.com/eryajf/chatgpt-dingtalk/pkg/logger"
- "github.com/eryajf/chatgpt-dingtalk/public"
- )
- // SingleQa 单聊
- func SingleQa(question, userId string) (answer string, err error) {
- chat := New(userId)
- defer chat.Close()
- // 定义一个重试策略
- retryStrategy := []retry.Option{
- retry.Delay(100 * time.Millisecond),
- retry.Attempts(3),
- retry.LastErrorOnly(true),
- }
- // 使用重试策略进行重试
- err = retry.Do(
- func() error {
- answer, err = chat.ChatWithContext(question)
- if err != nil {
- return err
- }
- return nil
- },
- retryStrategy...)
- return
- }
- // ContextQa 串聊
- func ContextQa(question, userId string) (chat *ChatGPT, answer string, err error) {
- chat = New(userId)
- if public.UserService.GetUserSessionContext(userId) != "" {
- err := chat.ChatContext.LoadConversation(userId)
- if err != nil {
- logger.Warning("load station failed: %v\n", err)
- }
- }
- retryStrategy := []retry.Option{
- retry.Delay(100 * time.Millisecond),
- retry.Attempts(3),
- retry.LastErrorOnly(true)}
- // 使用重试策略进行重试
- err = retry.Do(
- func() error {
- answer, err = chat.ChatWithContext(question)
- if err != nil {
- return err
- }
- return nil
- },
- retryStrategy...)
- return
- }
- // ImageQa 生成图片
- func ImageQa(question, userId string) (answer string, err error) {
- chat := New(userId)
- defer chat.Close()
- // 定义一个重试策略
- retryStrategy := []retry.Option{
- retry.Delay(100 * time.Millisecond),
- retry.Attempts(3),
- retry.LastErrorOnly(true),
- }
- // 使用重试策略进行重试
- err = retry.Do(
- func() error {
- answer, err = chat.GenreateImage(question)
- if err != nil {
- return err
- }
- return nil
- },
- retryStrategy...)
- return
- }
|