summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/Wewordle.py
blob: 99c81a8463f2448074ed0b92dbabdd1a2a7d3f73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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"]