You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 18, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+7-10Lines changed: 7 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,16 +46,16 @@ If you receive the following error, you can try **providing a cookie** and see i
46
46
5. Go to [bing.com](https://bing.com)
47
47
6. Open the extension
48
48
7. Click "Export" on the bottom right, then "Export as JSON" (This saves your cookies to clipboard)
49
-
8. Paste your cookies into a file `bing_cookies_*.json`.
50
-
- NOTE: The **cookies file name MUST follow the regex pattern `bing_cookies_*.json`**, so that they could be recognized by internal cookie processing mechanisms
49
+
8. Paste your cookies into a file `bing_cookies.json`.
50
+
- NOTE: The **cookies file name MUST follow the regex pattern `bing_cookies.json`**, so that they could be recognized by internal cookie processing mechanisms
51
51
52
52
### Use cookies in code:
53
53
54
54
```python
55
55
import json
56
56
from re_edge_gpt import Chatbot
57
57
58
-
cookies = json.loads(open("./path/to/bing_cookies.json", encoding="utf-8").read())# might omit cookies option
58
+
cookies = json.loads(open("./path/to/bing_cookies.json", encoding="utf-8").read())
0 commit comments