Browse Source

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

二丫讲梵 2 years ago
parent
commit
78d26cae60
1 changed files with 3 additions and 1 deletions
  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 {