mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-03 03:40:12 +00:00
901595b10f
Use `from __future__ import annotations avoid `dict` and `list` cause "TypeErro: 'type' object is not subscriptable". Refer to the following Stack Overflow discussions for more information: 1. https://stackoverflow.com/questions/75202610/typeerror-type-object-is-not-subscriptable-python 2. https://stackoverflow.com/questions/59101121/type-hint-for-a-dict-gives-typeerror-type-object-is-not-subscriptable
75 lines
2.7 KiB
Python
75 lines
2.7 KiB
Python
from __future__ import annotations
|
|
|
|
import json
|
|
import random
|
|
import string
|
|
import time
|
|
|
|
import requests
|
|
|
|
from ..typing import Any, CreateResult
|
|
from .base_provider import BaseProvider
|
|
|
|
|
|
class Wewordle(BaseProvider):
|
|
url = "https://wewordle.org/"
|
|
working = True
|
|
supports_gpt_35_turbo = True
|
|
|
|
@classmethod
|
|
def create_completion(
|
|
cls,
|
|
model: str,
|
|
messages: list[dict[str, str]],
|
|
stream: bool, **kwargs: Any) -> CreateResult:
|
|
|
|
# randomize user id and app id
|
|
_user_id = "".join(
|
|
random.choices(f"{string.ascii_lowercase}{string.digits}", k=16))
|
|
|
|
_app_id = "".join(
|
|
random.choices(f"{string.ascii_lowercase}{string.digits}", k=31))
|
|
|
|
# make current date with format utc
|
|
_request_date = time.strftime("%Y-%m-%dT%H:%M:%S.000Z", time.gmtime())
|
|
headers = {
|
|
"accept" : "*/*",
|
|
"pragma" : "no-cache",
|
|
"Content-Type" : "application/json",
|
|
"Connection" : "keep-alive"
|
|
# user agent android client
|
|
# 'User-Agent': 'Dalvik/2.1.0 (Linux; U; Android 10; SM-G975F Build/QP1A.190711.020)',
|
|
}
|
|
|
|
data: dict[str, Any] = {
|
|
"user" : _user_id,
|
|
"messages" : messages,
|
|
"subscriber": {
|
|
"originalPurchaseDate" : None,
|
|
"originalApplicationVersion" : None,
|
|
"allPurchaseDatesMillis" : {},
|
|
"entitlements" : {"active": {}, "all": {}},
|
|
"allPurchaseDates" : {},
|
|
"allExpirationDatesMillis" : {},
|
|
"allExpirationDates" : {},
|
|
"originalAppUserId" : f"$RCAnonymousID:{_app_id}",
|
|
"latestExpirationDate" : None,
|
|
"requestDate" : _request_date,
|
|
"latestExpirationDateMillis" : None,
|
|
"nonSubscriptionTransactions" : [],
|
|
"originalPurchaseDateMillis" : None,
|
|
"managementURL" : None,
|
|
"allPurchasedProductIdentifiers": [],
|
|
"firstSeen" : _request_date,
|
|
"activeSubscriptions" : [],
|
|
}
|
|
}
|
|
|
|
response = requests.post(f"{cls.url}gptapi/v1/android/turbo",
|
|
headers=headers, data=json.dumps(data))
|
|
|
|
response.raise_for_status()
|
|
_json = response.json()
|
|
if "message" in _json:
|
|
yield _json["message"]["content"]
|