diff options
author | Bagus Indrayana <bagusindrayanaindo@gmail.com> | 2023-07-12 01:49:23 +0200 |
---|---|---|
committer | Bagus Indrayana <bagusindrayanaindo@gmail.com> | 2023-07-12 01:49:23 +0200 |
commit | 6fb45515400488b32ac970bbd9f6f51023259b9f (patch) | |
tree | fb624601b90655fc9950f4c3cf1edb197c594664 /g4f/Provider/Providers/Wewordle.py | |
parent | Merge pull request #741 from bagusindrayana/aiservice (diff) | |
download | gpt4free-6fb45515400488b32ac970bbd9f6f51023259b9f.tar gpt4free-6fb45515400488b32ac970bbd9f6f51023259b9f.tar.gz gpt4free-6fb45515400488b32ac970bbd9f6f51023259b9f.tar.bz2 gpt4free-6fb45515400488b32ac970bbd9f6f51023259b9f.tar.lz gpt4free-6fb45515400488b32ac970bbd9f6f51023259b9f.tar.xz gpt4free-6fb45515400488b32ac970bbd9f6f51023259b9f.tar.zst gpt4free-6fb45515400488b32ac970bbd9f6f51023259b9f.zip |
Diffstat (limited to 'g4f/Provider/Providers/Wewordle.py')
-rw-r--r-- | g4f/Provider/Providers/Wewordle.py | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/g4f/Provider/Providers/Wewordle.py b/g4f/Provider/Providers/Wewordle.py new file mode 100644 index 00000000..95966fbd --- /dev/null +++ b/g4f/Provider/Providers/Wewordle.py @@ -0,0 +1,73 @@ +import os,sys +import requests +import json +import random +import time +import string +from ...typing import sha256, Dict, get_type_hints + +url = "https://wewordle.org/gptapi/v1/android/turbo" +model = ['gpt-3.5-turbo'] +supports_stream = False +needs_auth = False + + +def _create_completion(model: str, messages: list, stream: bool, **kwargs): + 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 = { + "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": [] + } + } + response = requests.post(url, headers=headers, data=json.dumps(data)) + if response.status_code == 200: + _json = response.json() + if 'message' in _json: + yield _json['message']['content'] + else: + print(f"Error Occurred::{response.status_code}") + return None + +params = f'g4f.Providers.{os.path.basename(__file__)[:-3]} supports: ' + \ + '(%s)' % ', '.join( + [f"{name}: {get_type_hints(_create_completion)[name].__name__}" for name in _create_completion.__code__.co_varnames[:_create_completion.__code__.co_argcount]])
\ No newline at end of file |