diff options
author | Bagus Indrayana <bagusindrayanaindo@gmail.com> | 2023-08-17 15:30:52 +0200 |
---|---|---|
committer | Bagus Indrayana <bagusindrayanaindo@gmail.com> | 2023-08-17 15:30:52 +0200 |
commit | 74ecdee78466104e57eb7488e682b564988fcd88 (patch) | |
tree | bbc764ba3248e80f20dde55e5b382b3f3d382575 /g4f/Provider/Wewordle.py | |
parent | add proxy and remove stream (diff) | |
parent | ~ (diff) | |
download | gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar.gz gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar.bz2 gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar.lz gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar.xz gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar.zst gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.zip |
Diffstat (limited to 'g4f/Provider/Wewordle.py')
-rw-r--r-- | g4f/Provider/Wewordle.py | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/g4f/Provider/Wewordle.py b/g4f/Provider/Wewordle.py new file mode 100644 index 00000000..f7f47ee0 --- /dev/null +++ b/g4f/Provider/Wewordle.py @@ -0,0 +1,75 @@ +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/gptapi/v1/android/turbo" + working = True + supports_gpt_35_turbo = True + + @staticmethod + def create_completion( + model: str, + messages: list[dict[str, str]], + stream: bool, + **kwargs: Any, + ) -> CreateResult: + base = "" + + for message in messages: + base += "%s: %s\n" % (message["role"], message["content"]) + base += "assistant:" + # 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": [{"role": "user", "content": base}], + "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": [], + }, + } + + url = "https://wewordle.org/gptapi/v1/android/turbo" + response = requests.post(url, headers=headers, data=json.dumps(data)) + response.raise_for_status() + _json = response.json() + if "message" in _json: + yield _json["message"]["content"] |