func.go 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. package compapi
  2. import (
  3. "context"
  4. "encoding/json"
  5. "errors"
  6. "fmt"
  7. "net/http"
  8. "wechat-api/internal/types"
  9. "wechat-api/internal/utils/contextkey"
  10. openai "github.com/openai/openai-go"
  11. "github.com/openai/openai-go/option"
  12. "github.com/openai/openai-go/packages/ssestream"
  13. "github.com/zeromicro/go-zero/rest/httpx"
  14. )
  15. func NewAiClient(apiKey string, apiBase string) *openai.Client {
  16. return openai.NewClient(option.WithAPIKey(apiKey),
  17. option.WithBaseURL(apiBase))
  18. }
  19. func NewFastgptClient(apiKey string) *openai.Client {
  20. //http://fastgpt.ascrm.cn/api/v1/
  21. return openai.NewClient(option.WithAPIKey(apiKey),
  22. option.WithBaseURL("http://fastgpt.ascrm.cn/api/v1/"))
  23. }
  24. func NewDeepSeekClient(apiKey string) *openai.Client {
  25. return openai.NewClient(option.WithAPIKey(apiKey),
  26. option.WithBaseURL("https://api.deepseek.com"))
  27. }
  28. func DoChatCompletions(ctx context.Context, client *openai.Client, chatInfo *types.CompApiReq) (*types.CompOpenApiResp, error) {
  29. var (
  30. jsonBytes []byte
  31. err error
  32. )
  33. emptyParams := openai.ChatCompletionNewParams{}
  34. if jsonBytes, err = json.Marshal(chatInfo); err != nil {
  35. return nil, err
  36. }
  37. //fmt.Printf("In DoChatCompletions, req: '%s'\n", string(jsonBytes))
  38. customResp := types.CompOpenApiResp{}
  39. reqBodyOps := option.WithRequestBody("application/json", jsonBytes)
  40. respBodyOps := option.WithResponseBodyInto(&customResp)
  41. if _, err = client.Chat.Completions.New(ctx, emptyParams, reqBodyOps, respBodyOps); err != nil {
  42. return nil, err
  43. }
  44. return &customResp, nil
  45. }
  46. func DoChatCompletionsStream(ctx context.Context, client *openai.Client, chatInfo *types.CompApiReq) (res *types.CompOpenApiResp, err error) {
  47. var (
  48. jsonBytes []byte
  49. raw *http.Response
  50. //raw []byte
  51. ok bool
  52. hw http.ResponseWriter
  53. )
  54. hw, ok = contextkey.HttpResponseWriterKey.GetValue(ctx) //context取出http.ResponseWriter
  55. if !ok {
  56. return nil, errors.New("content get http writer err")
  57. }
  58. flusher, ok := (hw).(http.Flusher)
  59. if !ok {
  60. http.Error(hw, "Streaming unsupported!", http.StatusInternalServerError)
  61. }
  62. emptyParams := openai.ChatCompletionNewParams{}
  63. if jsonBytes, err = json.Marshal(chatInfo); err != nil {
  64. return nil, err
  65. }
  66. reqBodyOps := option.WithRequestBody("application/json", jsonBytes)
  67. respBodyOps := option.WithResponseBodyInto(&raw)
  68. if _, err = client.Chat.Completions.New(ctx, emptyParams, reqBodyOps, respBodyOps, option.WithJSONSet("stream", true)); err != nil {
  69. return nil, err
  70. }
  71. //设置流式输出头 http1.1
  72. hw.Header().Set("Content-Type", "text/event-stream;charset=utf-8")
  73. hw.Header().Set("Connection", "keep-alive")
  74. hw.Header().Set("Cache-Control", "no-cache")
  75. chatStream := ssestream.NewStream[ApiRespStreamChunk](ApiRespStreamDecoder(raw), err)
  76. defer chatStream.Close()
  77. for chatStream.Next() {
  78. chunk := chatStream.Current()
  79. fmt.Fprintf(hw, "event:%s\ndata:%s\n\n", chunk.Event, chunk.Data.RAW)
  80. flusher.Flush()
  81. //time.Sleep(1 * time.Millisecond)
  82. }
  83. fmt.Fprintf(hw, "event:%s\ndata:%s\n\n", "answer", "[DONE]")
  84. flusher.Flush()
  85. httpx.Ok(hw)
  86. return nil, nil
  87. }
  88. func NewChatCompletions(ctx context.Context, client *openai.Client, chatInfo *types.CompApiReq) (*types.CompOpenApiResp, error) {
  89. if chatInfo.Stream {
  90. return DoChatCompletionsStream(ctx, client, chatInfo)
  91. } else {
  92. return DoChatCompletions(ctx, client, chatInfo)
  93. }
  94. }
  95. func NewFastgptChatCompletions(ctx context.Context, apiKey string, apiBase string, chatInfo *types.CompApiReq) (*types.CompOpenApiResp, error) {
  96. client := NewAiClient(apiKey, apiBase)
  97. return NewChatCompletions(ctx, client, chatInfo)
  98. }
  99. func NewDeepSeekChatCompletions(ctx context.Context, apiKey string, chatInfo *types.CompApiReq, chatModel openai.ChatModel) (res *types.CompOpenApiResp, err error) {
  100. client := NewDeepSeekClient(apiKey)
  101. if chatModel != ChatModelDeepSeekV3 {
  102. chatModel = ChatModelDeepSeekR1
  103. }
  104. chatInfo.Model = chatModel
  105. return NewChatCompletions(ctx, client, chatInfo)
  106. }
  107. func DoChatCompletionsStreamOld(ctx context.Context, client *openai.Client, chatInfo *types.CompApiReq) (res *types.CompOpenApiResp, err error) {
  108. var (
  109. jsonBytes []byte
  110. )
  111. emptyParams := openai.ChatCompletionNewParams{}
  112. if jsonBytes, err = json.Marshal(chatInfo); err != nil {
  113. return nil, err
  114. }
  115. reqBodyOps := option.WithRequestBody("application/json", jsonBytes)
  116. //customResp := types.CompOpenApiResp{}
  117. //respBodyOps := option.WithResponseBodyInto(&customResp)
  118. //chatStream := client.Chat.Completions.NewStreaming(ctx, emptyParams, reqBodyOps, respBodyOps)
  119. chatStream := client.Chat.Completions.NewStreaming(ctx, emptyParams, reqBodyOps)
  120. // optionally, an accumulator helper can be used
  121. acc := openai.ChatCompletionAccumulator{}
  122. httpWriter, ok := ctx.Value("HttpResp-Writer").(http.ResponseWriter)
  123. if !ok {
  124. return nil, errors.New("content get writer err")
  125. }
  126. //httpWriter.Header().Set("Content-Type", "text/event-stream;charset=utf-8")
  127. //httpWriter.Header().Set("Connection", "keep-alive")
  128. //httpWriter.Header().Set("Cache-Control", "no-cache")
  129. idx := 0
  130. for chatStream.Next() {
  131. chunk := chatStream.Current()
  132. acc.AddChunk(chunk)
  133. fmt.Printf("=====>get %d chunk:%v\n", idx, chunk)
  134. if _, err := fmt.Fprintf(httpWriter, "%v", chunk); err != nil {
  135. fmt.Printf("Error writing to client:%v \n", err)
  136. break
  137. }
  138. if content, ok := acc.JustFinishedContent(); ok {
  139. println("Content stream finished:", content)
  140. }
  141. // if using tool calls
  142. if tool, ok := acc.JustFinishedToolCall(); ok {
  143. println("Tool call stream finished:", tool.Index, tool.Name, tool.Arguments)
  144. }
  145. if refusal, ok := acc.JustFinishedRefusal(); ok {
  146. println("Refusal stream finished:", refusal)
  147. }
  148. // it's best to use chunks after handling JustFinished events
  149. if len(chunk.Choices) > 0 {
  150. idx++
  151. fmt.Printf("idx:%d get =>'%s'\n", idx, chunk.Choices[0].Delta.Content)
  152. }
  153. }
  154. if err := chatStream.Err(); err != nil {
  155. return nil, err
  156. }
  157. return nil, nil
  158. }
  159. // 获取workToken
  160. func GetWorkTokenByID(eventType string, workId string) string {
  161. val, exist := fastgptWorkIdMap[workId]
  162. if !exist {
  163. val = fastgptWorkIdMap["default"]
  164. }
  165. return val.Id
  166. }
  167. // 获取workIdx
  168. func GetWorkIdxByID(eventType string, workId string) int {
  169. val, exist := fastgptWorkIdMap[workId]
  170. if !exist {
  171. val = fastgptWorkIdMap["default"]
  172. }
  173. return val.Idx
  174. }