diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-01-04 00:38:31 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-01-04 00:38:31 +0100 |
commit | 139f68af4f331943d441cad9f0ab7b020ef90cd8 (patch) | |
tree | 1691d7f9e62191e57e84bf91c6d852d37784bb00 /g4f/Provider/bing/conversation.py | |
parent | Add create images to Bing (diff) | |
download | gpt4free-best.tar gpt4free-best.tar.gz gpt4free-best.tar.bz2 gpt4free-best.tar.lz gpt4free-best.tar.xz gpt4free-best.tar.zst gpt4free-best.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/Provider/bing/conversation.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/g4f/Provider/bing/conversation.py b/g4f/Provider/bing/conversation.py index 8b33853c..ef45cd82 100644 --- a/g4f/Provider/bing/conversation.py +++ b/g4f/Provider/bing/conversation.py @@ -35,9 +35,9 @@ async def delete_conversation(session: ClientSession, conversation: Conversation "source": "cib", "optionsSets": ["autosave"] } - async with session.post(url, json=json, proxy=proxy) as response: - try: + try: + async with session.post(url, json=json, proxy=proxy) as response: response = await response.json() return response["result"]["value"] == "Success" - except: - return False + except: + return False
\ No newline at end of file |