Explorar o código

feat: 忽略ssl的校验 (#22)

二丫讲梵 %!s(int64=2) %!d(string=hai) anos
pai
achega
78d26cae60
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  1. 3 1
      gpt/gpt.go

+ 3 - 1
gpt/gpt.go

@@ -1,6 +1,7 @@
 package gpt
 
 import (
+	"crypto/tls"
 	"encoding/json"
 	"fmt"
 	"time"
@@ -56,7 +57,8 @@ func Completions(msg string) (string, error) {
 		SetRetryWaitTime(1*time.Second).
 		SetTimeout(cfg.SessionTimeout).
 		SetHeader("Content-Type", "application/json").
-		SetHeader("Authorization", "Bearer "+cfg.ApiKey)
+		SetHeader("Authorization", "Bearer "+cfg.ApiKey).
+		SetTLSClientConfig(&tls.Config{InsecureSkipVerify: true})
 
 	rsp, err := client.R().SetBody(requestBody).Post(BASEURL + "completions")
 	if err != nil {