gtp.go 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. package gtp
  2. import (
  3. "bytes"
  4. "encoding/json"
  5. "errors"
  6. "fmt"
  7. "io/ioutil"
  8. "log"
  9. "net/http"
  10. "github.com/eryajf/chatgpt-dingtalk/config"
  11. )
  12. const BASEURL = "https://api.openai.com/v1/"
  13. // ChatGPTResponseBody 请求体
  14. type ChatGPTResponseBody struct {
  15. ID string `json:"id"`
  16. Object string `json:"object"`
  17. Created int `json:"created"`
  18. Model string `json:"model"`
  19. Choices []ChoiceItem `json:"choices"`
  20. Usage map[string]interface{} `json:"usage"`
  21. }
  22. type ChoiceItem struct {
  23. Text string `json:"text"`
  24. Index int `json:"index"`
  25. Logprobs int `json:"logprobs"`
  26. FinishReason string `json:"finish_reason"`
  27. }
  28. // ChatGPTRequestBody 响应体
  29. type ChatGPTRequestBody struct {
  30. Model string `json:"model"`
  31. Prompt string `json:"prompt"`
  32. MaxTokens int `json:"max_tokens"`
  33. Temperature float32 `json:"temperature"`
  34. TopP int `json:"top_p"`
  35. FrequencyPenalty int `json:"frequency_penalty"`
  36. PresencePenalty int `json:"presence_penalty"`
  37. }
  38. // Completions gtp文本模型回复
  39. //curl https://api.openai.com/v1/completions
  40. //-H "Content-Type: application/json"
  41. //-H "Authorization: Bearer your chatGPT key"
  42. //-d '{"model": "text-davinci-003", "prompt": "give me good song", "temperature": 0, "max_tokens": 7}'
  43. func Completions(msg string) (string, error) {
  44. requestBody := ChatGPTRequestBody{
  45. Model: "text-davinci-003",
  46. Prompt: msg,
  47. MaxTokens: 1024,
  48. Temperature: 0.7,
  49. TopP: 1,
  50. FrequencyPenalty: 0,
  51. PresencePenalty: 0,
  52. }
  53. requestData, err := json.Marshal(requestBody)
  54. if err != nil {
  55. return "", err
  56. }
  57. log.Printf("request gtp json string : %v", string(requestData))
  58. req, err := http.NewRequest("POST", BASEURL+"completions", bytes.NewBuffer(requestData))
  59. if err != nil {
  60. return "", err
  61. }
  62. apiKey := config.LoadConfig().ApiKey
  63. req.Header.Set("Content-Type", "application/json")
  64. req.Header.Set("Authorization", "Bearer "+apiKey)
  65. client := &http.Client{}
  66. response, err := client.Do(req)
  67. if err != nil {
  68. return "", err
  69. }
  70. defer response.Body.Close()
  71. if response.StatusCode != 200 {
  72. return "", errors.New(fmt.Sprintf("gtp api status code not equals 200,code is %d", response.StatusCode))
  73. }
  74. body, err := ioutil.ReadAll(response.Body)
  75. if err != nil {
  76. return "", err
  77. }
  78. gptResponseBody := &ChatGPTResponseBody{}
  79. log.Println(string(body))
  80. err = json.Unmarshal(body, gptResponseBody)
  81. if err != nil {
  82. return "", err
  83. }
  84. var reply string
  85. if len(gptResponseBody.Choices) > 0 {
  86. reply = gptResponseBody.Choices[0].Text
  87. }
  88. log.Printf("gpt response text: %s \n", reply)
  89. return reply, nil
  90. }