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

Commit

Permalink
swap endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio committed Jul 7, 2023
1 parent a1c32f4 commit be72832
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/revChatGPT/V1.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,10 @@ def get_arkose_token(
URLs: list[str] - URLs of the images or audio files
"""
resp = requests.get(
(CAPTCHA_URL + "start?download_images=true")
if download_images
else CAPTCHA_URL + "start",
"https://arkose-token.tms.im/"
# (CAPTCHA_URL + "start?download_images=true")
# if download_images
# else CAPTCHA_URL + "start",
)
resp_json: dict = resp.json()
if resp.status_code == 200:
Expand Down

0 comments on commit be72832

Please sign in to comment.