diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-04-11 03:19:05 +0200 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-04-11 03:19:05 +0200 |
commit | 934edc86ba5249a0ce7d22ccc310561cf7d2866d (patch) | |
tree | 1214217c879b82c4d6721f30218f658fb4f9c1bf | |
parent | Fix DeepInfra Provider, Fix Speech Recognition on Phone (diff) | |
download | gpt4free-934edc86ba5249a0ce7d22ccc310561cf7d2866d.tar gpt4free-934edc86ba5249a0ce7d22ccc310561cf7d2866d.tar.gz gpt4free-934edc86ba5249a0ce7d22ccc310561cf7d2866d.tar.bz2 gpt4free-934edc86ba5249a0ce7d22ccc310561cf7d2866d.tar.lz gpt4free-934edc86ba5249a0ce7d22ccc310561cf7d2866d.tar.xz gpt4free-934edc86ba5249a0ce7d22ccc310561cf7d2866d.tar.zst gpt4free-934edc86ba5249a0ce7d22ccc310561cf7d2866d.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/Provider/bing/conversation.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g4f/Provider/bing/conversation.py b/g4f/Provider/bing/conversation.py index e9cdfe31..ef48cd91 100644 --- a/g4f/Provider/bing/conversation.py +++ b/g4f/Provider/bing/conversation.py @@ -34,9 +34,9 @@ async def create_conversation(session: ClientSession, headers: dict, tone: str) Conversation: An instance representing the created conversation. """ if tone == "Copilot": - url = "https://copilot.microsoft.com/turing/conversation/create?bundleVersion=1.1634.3-nodesign2" + url = "https://copilot.microsoft.com/turing/conversation/create?bundleVersion=1.1686.0" else: - url = "https://www.bing.com/turing/conversation/create?bundleVersion=1.1626.1" + url = "https://www.bing.com/turing/conversation/create?bundleVersion=1.1686.0" async with session.get(url, headers=headers) as response: if response.status == 404: raise RateLimitError("Response 404: Do less requests and reuse conversations") |