summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/bing/conversation.py
diff options
context:
space:
mode:
authorH Lohaus <hlohaus@users.noreply.github.com>2024-04-17 10:43:11 +0200
committerGitHub <noreply@github.com>2024-04-17 10:43:11 +0200
commit6afc6722a05f6d4498e6dcf19a7689ad58ffd444 (patch)
tree7b8ab362992408b78838df82a5172be15272a485 /g4f/Provider/bing/conversation.py
parentMerge pull request #1833 from hlohaus/curl (diff)
parentFix style.css (diff)
downloadgpt4free-6afc6722a05f6d4498e6dcf19a7689ad58ffd444.tar
gpt4free-6afc6722a05f6d4498e6dcf19a7689ad58ffd444.tar.gz
gpt4free-6afc6722a05f6d4498e6dcf19a7689ad58ffd444.tar.bz2
gpt4free-6afc6722a05f6d4498e6dcf19a7689ad58ffd444.tar.lz
gpt4free-6afc6722a05f6d4498e6dcf19a7689ad58ffd444.tar.xz
gpt4free-6afc6722a05f6d4498e6dcf19a7689ad58ffd444.tar.zst
gpt4free-6afc6722a05f6d4498e6dcf19a7689ad58ffd444.zip
Diffstat (limited to 'g4f/Provider/bing/conversation.py')
-rw-r--r--g4f/Provider/bing/conversation.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/g4f/Provider/bing/conversation.py b/g4f/Provider/bing/conversation.py
index ef48cd91..85292079 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.1686.0"
+ url = "https://copilot.microsoft.com/turing/conversation/create?bundleVersion=1.1690.0"
else:
- url = "https://www.bing.com/turing/conversation/create?bundleVersion=1.1686.0"
+ url = "https://www.bing.com/turing/conversation/create?bundleVersion=1.1690.0"
async with session.get(url, headers=headers) as response:
if response.status == 404:
raise RateLimitError("Response 404: Do less requests and reuse conversations")