Skip to content

Commit

Permalink
Fix create conversation URL (#59)
Browse files Browse the repository at this point in the history
- Fix create conversation URL by replacing the old one which is becoming
inaccessible with an up to date URL that currently works
  • Loading branch information
vsakkas authored Oct 6, 2023
1 parent aebeb2e commit 75295c8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Sydney.py

[![Latest Release](https://img.shields.io/github/v/release/vsakkas/sydney.py.svg)](https://github.com/vsakkas/sydney.py/releases/tag/v0.15.1)
[![Latest Release](https://img.shields.io/github/v/release/vsakkas/sydney.py.svg)](https://github.com/vsakkas/sydney.py/releases/tag/v0.15.2)
[![Python](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
[![MIT License](https://img.shields.io/badge/license-MIT-blue)](https://github.com/vsakkas/sydney.py/blob/master/LICENSE)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sydney-py"
version = "0.15.1"
version = "0.15.2"
description = "Python Client for Bing Chat, also known as Sydney."
authors = ["vsakkas <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion sydney/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Edg/117.0.2045.47",
}

BING_CREATE_CONVERSATION_URL = "https://www.bing.com/turing/conversation/create"
BING_CREATE_CONVERSATION_URL = "https://edgeservices.bing.com/edgesvc/turing/conversation/create"
BING_GET_CONVERSATIONS_URL = "https://www.bing.com/turing/conversation/chats"
BING_CHATHUB_URL = "wss://sydney.bing.com/sydney/ChatHub"

Expand Down

0 comments on commit 75295c8

Please sign in to comment.