diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-02-17 22:36:31 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-02-17 22:36:31 +0100 |
commit | 7cd5b3f0c639578dcdaeb354e1071172a7d7f761 (patch) | |
tree | 873df62a78b541cf90c49d601717f6b1c577a8b4 /g4f | |
parent | Delete image.html (diff) | |
download | gpt4free-7cd5b3f0c639578dcdaeb354e1071172a7d7f761.tar gpt4free-7cd5b3f0c639578dcdaeb354e1071172a7d7f761.tar.gz gpt4free-7cd5b3f0c639578dcdaeb354e1071172a7d7f761.tar.bz2 gpt4free-7cd5b3f0c639578dcdaeb354e1071172a7d7f761.tar.lz gpt4free-7cd5b3f0c639578dcdaeb354e1071172a7d7f761.tar.xz gpt4free-7cd5b3f0c639578dcdaeb354e1071172a7d7f761.tar.zst gpt4free-7cd5b3f0c639578dcdaeb354e1071172a7d7f761.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/Provider/Bing.py | 6 | ||||
-rw-r--r-- | g4f/Provider/bing/conversation.py | 15 |
2 files changed, 17 insertions, 4 deletions
diff --git a/g4f/Provider/Bing.py b/g4f/Provider/Bing.py index 5b5f89aa..1e29c4f1 100644 --- a/g4f/Provider/Bing.py +++ b/g4f/Provider/Bing.py @@ -66,7 +66,7 @@ class Bing(AsyncGeneratorProvider): prompt = messages[-1]["content"] context = create_context(messages[:-1]) - cookies = {**Defaults.cookies, **cookies} if cookies else Defaults.cookies + cookies = {**get_default_cookies(), **cookies} if cookies else get_default_cookies() gpt4_turbo = True if model.startswith("gpt-4-turbo") else False @@ -146,8 +146,8 @@ class Defaults: "streamf", "codeint", "langdtwb", "fdwtlst", "fluxprod", "deuct3" ] - # Default cookies - cookies = { +def get_default_cookies(): + return { 'SRCHD' : 'AF=NOFORM', 'PPLState' : '1', 'KievRPSSecAuth': '', diff --git a/g4f/Provider/bing/conversation.py b/g4f/Provider/bing/conversation.py index 388bdd6b..fb95e241 100644 --- a/g4f/Provider/bing/conversation.py +++ b/g4f/Provider/bing/conversation.py @@ -1,5 +1,6 @@ from __future__ import annotations +import uuid from aiohttp import ClientSession class Conversation: @@ -30,8 +31,20 @@ async def create_conversation(session: ClientSession, proxy: str = None) -> Conv Returns: Conversation: An instance representing the created conversation. """ - url = 'https://www.bing.com/turing/conversation/create?bundleVersion=1.1199.4' + url = 'https://www.bing.com/search?toncp=0&FORM=hpcodx&q=Bing+AI&showconv=1&cc=en' async with session.get(url, proxy=proxy) as response: + response.raise_for_status() + headers = { + "accept": "application/json", + "sec-fetch-dest": "empty", + "sec-fetch-mode": "cors", + "sec-fetch-site": "same-origin", + "x-ms-client-request-id": str(uuid.uuid4()), + "x-ms-useragent": "azsdk-js-api-client-factory/1.0.0-beta.1 core-rest-pipeline/1.12.3 OS/Windows", + "referer": url + } + url = 'https://www.bing.com/turing/conversation/create?bundleVersion=1.1579.2' + async with session.get(url, headers=headers, proxy=proxy) as response: try: data = await response.json() except: |