Skip to content
This repository has been archived by the owner on Aug 10, 2023. It is now read-only.

Commit

Permalink
rename to make more clear
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio committed Jun 26, 2023
1 parent bd45ea8 commit ac5ada4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conversion/requests/chatgpt/convert.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package chatgpt

import (
chatgpt_req "freechatgpt/internal/chatgpt"
arkose_req "freechatgpt/internal/chatgpt"
chatgpt_types "freechatgpt/typings/chatgpt"
official_types "freechatgpt/typings/official"
"strings"
Expand All @@ -13,7 +13,7 @@ func ConvertAPIRequest(api_request official_types.APIRequest) chatgpt_types.Chat
chatgpt_request.Model = "text-davinci-002-render-sha"
}
if strings.HasPrefix(api_request.Model, "gpt-4") {
chatgpt_req.Get_arkose_token()
arkose_req.Get_arkose_token()
chatgpt_request.Model = api_request.Model
}
if api_request.Model == "gpt-4" {
Expand Down

0 comments on commit ac5ada4

Please sign in to comment.