Python Client for Bing Chat, also known as Sydney.
Project description
Sydney.py
Python Client for Bing Chat, also known as Sydney.
Note This is an unofficial client.
Requirements
- Python 3.10 or newer
- Microsoft account with access to Bing Chat
Installation
To install Sydney.py, run the following command:
pip install sydney-py
or, if you use poetry:
poetry add sydney-py
Usage
To use Sydney.py you first need to extract the _U
cookie from Bing.
Then, set it as an environment variable:
export BING_U_COOKIE=<your-cookie>
Then, you can use the provided Sydney Client:
import asyncio
from sydney import SydneyClient
async def main() -> None:
sydney = SydneyClient()
await sydney.start_conversation(style="balanced")
response = await sydney.ask("Hello, how are you?")
print(response)
await sydney.close_conversation()
if __name__ == "__main__":
asyncio.run(main())
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
sydney_py-0.6.0.tar.gz
(4.7 kB
view hashes)
Built Distribution
Close
Hashes for sydney_py-0.6.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2707b1952d99963d3bf214ba40cbd85b0a3ab7d446e4a6ad7a07c4d7c7c4fde |
|
MD5 | ae22666aba0be5f5d032cb7096e3587f |
|
BLAKE2b-256 | 3abecd5a40266efc7c29d088be9ee2667544d495f46ff40e3f06c76592328a4a |