xiaolv commited on
Commit
bb9156b
1 Parent(s): 0f52bd0

Upload 5 files

Browse files
Files changed (5) hide show
  1. README.md +5 -4
  2. app.py +58 -0
  3. cookies.json +485 -0
  4. gitattributes.txt +34 -0
  5. requirements.txt +5 -0
README.md CHANGED
@@ -1,12 +1,13 @@
1
  ---
2
- title: New Bings
3
- emoji: 🐢
4
- colorFrom: gray
5
- colorTo: yellow
6
  sdk: gradio
7
  sdk_version: 3.23.0
8
  app_file: app.py
9
  pinned: false
 
10
  ---
11
 
12
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: New-Bing-with Your Cookies
3
+ emoji: 🐨
4
+ colorFrom: green
5
+ colorTo: pink
6
  sdk: gradio
7
  sdk_version: 3.23.0
8
  app_file: app.py
9
  pinned: false
10
+ license: other
11
  ---
12
 
13
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import json
3
+ import asyncio
4
+ import os
5
+ from EdgeGPT import Chatbot, ConversationStyle
6
+
7
+ # read cookie from local file
8
+ with open('./cookies.json', 'r') as f:
9
+ cookies = json.load(f)
10
+
11
+ async def get_model_reply(prompt,style,cookies,context=[]):
12
+ # combines the new question with a previous context
13
+ context += [prompt]
14
+ cookies = json.loads(cookies)
15
+ # given the most recent context (4096 characters)
16
+ # continue the text up to 2048 tokens ~ 8192 charaters
17
+ bot = Chatbot(cookies=cookies)
18
+ raw_data = await bot.ask(prompt, conversation_style=style)
19
+ await bot.close()
20
+ #print(raw_data)
21
+ response = raw_data["item"]["messages"][1]["text"]
22
+ context += [response]
23
+
24
+ # list of (user, bot) responses. We will use this format later
25
+ responses = [(u, b) for u, b in zip(context[::2], context[1::2])]
26
+
27
+ return responses, context
28
+ query = 'Which is the largest country by area in the world?'
29
+ style="precise"
30
+ responses, context =asyncio.run(get_model_reply(query,style,context=[]))
31
+
32
+ print(' ' + responses[-1][0])
33
+ print(' ' + responses[-1][1])
34
+ with gr.Blocks() as dialog_app:
35
+ with gr.Tab("Cookies"):
36
+ cookies = gr.Textbox(lines=2, label="输入bing.com中的cookies")
37
+ with gr.Tab("New Bing Chat"):
38
+ gr.Markdown("# A Simple Web to use New Bing Without Magic")
39
+ chatbot = gr.Chatbot()
40
+ state = gr.State([])
41
+ markdown = gr.Markdown(label="Output")
42
+
43
+ with gr.Row():
44
+ inputs = gr.Textbox(
45
+ label="输入问题",
46
+ placeholder="Enter text and press enter"
47
+ )
48
+ style = gr.Dropdown(label="回答倾向", choices=["creative", "balanced", "precise"], multiselect=False,
49
+ value="balanced", type="value")
50
+
51
+ inputs.submit(get_model_reply, [inputs, style, cookies, state], [chatbot, state])
52
+ send = gr.Button("Send")
53
+ send.click(get_model_reply, [inputs, style, cookies, state], [chatbot, state])
54
+
55
+ # launches the app in a new local port
56
+ dialog_app.launch()
57
+ # 为网站设置密码防止滥用
58
+ # dialog_app.launch(auth=("admin", "pass1234"))
cookies.json ADDED
@@ -0,0 +1,485 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "domain": ".bing.com",
4
+ "expirationDate": 1711412850.062188,
5
+ "hostOnly": false,
6
+ "httpOnly": false,
7
+ "name": "SnrOvr",
8
+ "path": "/",
9
+ "sameSite": "no_restriction",
10
+ "secure": true,
11
+ "session": false,
12
+ "storeId": null,
13
+ "value": "X=rebateson"
14
+ },
15
+ {
16
+ "domain": ".bing.com",
17
+ "expirationDate": 1714349610.653854,
18
+ "hostOnly": false,
19
+ "httpOnly": false,
20
+ "name": "SRCHUSR",
21
+ "path": "/",
22
+ "sameSite": "no_restriction",
23
+ "secure": true,
24
+ "session": false,
25
+ "storeId": null,
26
+ "value": "DOB=20230312&T=1679789610000&POEX=W"
27
+ },
28
+ {
29
+ "domain": ".bing.com",
30
+ "expirationDate": 1679801308.180054,
31
+ "hostOnly": false,
32
+ "httpOnly": true,
33
+ "name": "SUID",
34
+ "path": "/",
35
+ "sameSite": "no_restriction",
36
+ "secure": true,
37
+ "session": false,
38
+ "storeId": null,
39
+ "value": "A"
40
+ },
41
+ {
42
+ "domain": ".bing.com",
43
+ "expirationDate": 1712975463.632008,
44
+ "hostOnly": false,
45
+ "httpOnly": true,
46
+ "name": "_EDGE_CD",
47
+ "path": "/",
48
+ "sameSite": null,
49
+ "secure": false,
50
+ "session": false,
51
+ "storeId": null,
52
+ "value": "m=en-us"
53
+ },
54
+ {
55
+ "domain": ".bing.com",
56
+ "expirationDate": 1713613017.914837,
57
+ "hostOnly": false,
58
+ "httpOnly": false,
59
+ "name": "_TTSS_OUT",
60
+ "path": "/",
61
+ "sameSite": "no_restriction",
62
+ "secure": true,
63
+ "session": false,
64
+ "storeId": null,
65
+ "value": "hist=WyJ6aC1IYW5zIl0="
66
+ },
67
+ {
68
+ "domain": ".bing.com",
69
+ "expirationDate": 1714350452.171491,
70
+ "hostOnly": false,
71
+ "httpOnly": false,
72
+ "name": "SRCHHPGUSR",
73
+ "path": "/",
74
+ "sameSite": "no_restriction",
75
+ "secure": true,
76
+ "session": false,
77
+ "storeId": null,
78
+ "value": "SRCHLANG=zh-Hans&PV=10.0.0&BRW=W&BRH=M&CW=1461&CH=886&SCW=1461&SCH=886&DPR=1.0&UTC=480&DM=0&WTS=63815252817&HV=1679790450&PRVCW=360&PRVCH=636&BZA=0&EXLTT=31&cdxtone=Precise"
79
+ },
80
+ {
81
+ "domain": ".bing.com",
82
+ "expirationDate": 1714346915.118111,
83
+ "hostOnly": false,
84
+ "httpOnly": false,
85
+ "name": "ANON",
86
+ "path": "/",
87
+ "sameSite": "no_restriction",
88
+ "secure": true,
89
+ "session": false,
90
+ "storeId": null,
91
+ "value": "A=854BE4DF87C89A02438B0D26FFFFFFFF&E=1c1a&W=1"
92
+ },
93
+ {
94
+ "domain": ".bing.com",
95
+ "hostOnly": false,
96
+ "httpOnly": false,
97
+ "name": "_SS",
98
+ "path": "/",
99
+ "sameSite": "no_restriction",
100
+ "secure": true,
101
+ "session": true,
102
+ "storeId": null,
103
+ "value": "SID=13F4F56AE1D668D826D2E7BFE095693C&R=537&RB=537&GB=0&RG=0&RP=537&PC=EE24"
104
+ },
105
+ {
106
+ "domain": ".bing.com",
107
+ "hostOnly": false,
108
+ "httpOnly": false,
109
+ "name": "ipv6",
110
+ "path": "/",
111
+ "sameSite": "no_restriction",
112
+ "secure": true,
113
+ "session": true,
114
+ "storeId": null,
115
+ "value": "hit=1679793210725&t=4"
116
+ },
117
+ {
118
+ "domain": ".bing.com",
119
+ "expirationDate": 1680996516.118089,
120
+ "hostOnly": false,
121
+ "httpOnly": false,
122
+ "name": "_U",
123
+ "path": "/",
124
+ "sameSite": "no_restriction",
125
+ "secure": true,
126
+ "session": false,
127
+ "storeId": null,
128
+ "value": "1JvZUcAfbS9jP8Iwyk11xoeR37fdcsPbvn8cddJ2Ca31beRv4vWmsJobIMSphtU9-uu7kPFoyTXUD9dF37ZqmLCLej_wVFP6UfNaEzJyttCUIiucSmDL1YDG8t0R7_7N3xjzSZ_HVdKb4Mk8WE_ebbJl2nTKJ2qWHHWYVSgK9n-MIzBLQRJwobzVjv_C8fc7VNtsCpaRm0VthpBZWZzkxxA"
129
+ },
130
+ {
131
+ "domain": ".bing.com",
132
+ "expirationDate": 1713145610.887981,
133
+ "hostOnly": false,
134
+ "httpOnly": false,
135
+ "name": "SRCHD",
136
+ "path": "/",
137
+ "sameSite": "no_restriction",
138
+ "secure": true,
139
+ "session": false,
140
+ "storeId": null,
141
+ "value": "AF=NOFORM"
142
+ },
143
+ {
144
+ "domain": ".bing.com",
145
+ "hostOnly": false,
146
+ "httpOnly": false,
147
+ "name": "PPLState",
148
+ "path": "/",
149
+ "sameSite": "no_restriction",
150
+ "secure": true,
151
+ "session": true,
152
+ "storeId": null,
153
+ "value": "1"
154
+ },
155
+ {
156
+ "domain": ".bing.com",
157
+ "expirationDate": 1681286616,
158
+ "hostOnly": false,
159
+ "httpOnly": false,
160
+ "name": "ANIMIA",
161
+ "path": "/",
162
+ "sameSite": "no_restriction",
163
+ "secure": true,
164
+ "session": false,
165
+ "storeId": null,
166
+ "value": "FRE=1"
167
+ },
168
+ {
169
+ "domain": ".bing.com",
170
+ "expirationDate": 1712281610.887952,
171
+ "hostOnly": false,
172
+ "httpOnly": true,
173
+ "name": "_EDGE_V",
174
+ "path": "/",
175
+ "sameSite": null,
176
+ "secure": false,
177
+ "session": false,
178
+ "storeId": null,
179
+ "value": "1"
180
+ },
181
+ {
182
+ "domain": ".bing.com",
183
+ "hostOnly": false,
184
+ "httpOnly": false,
185
+ "name": "NAP",
186
+ "path": "/",
187
+ "sameSite": "no_restriction",
188
+ "secure": true,
189
+ "session": true,
190
+ "storeId": null,
191
+ "value": "V=1.9&E=1bc0&C=ABs87PtDDadwwow8m57JvEyLphR9ayepIox4ZHRk4kxUea6lIw0Ihw&W=1"
192
+ },
193
+ {
194
+ "domain": ".bing.com",
195
+ "expirationDate": 1711412850.06214,
196
+ "hostOnly": false,
197
+ "httpOnly": false,
198
+ "name": "_RwBf",
199
+ "path": "/",
200
+ "sameSite": "no_restriction",
201
+ "secure": true,
202
+ "session": false,
203
+ "storeId": null,
204
+ "value": "ilt=1&ihpd=1&ispd=0&rc=537&rb=537&gb=0&rg=0&pc=537&mtu=0&rbb=0.0&g=0&cid=&clo=0&v=3&l=2023-03-25T07:00:00.0000000Z&lft=0001-01-01T00:00:00.0000000&aof=0&o=16&p=bingcopilotwaitlist&c=MY00IA&t=3097&s=2023-03-09T05:51:32.5439205+00:00&ts=2023-03-26T00:27:29.9303615+00:00&rwred=0&wls=2&lka=0&lkt=0&TH=&r=1&mta=0&e=q8hKqJZced8YUi-bsDZNGkv4KYE_d2wQ5xmk1Ss1XTwBV6WPK2MMVPtgOxSUD6PXWZIvBcMrt_ljW8joY8dgaYPnymZ8VUg0N5dFwspkUVc&A="
205
+ },
206
+ {
207
+ "domain": ".bing.com",
208
+ "expirationDate": 1714350459.037798,
209
+ "hostOnly": false,
210
+ "httpOnly": false,
211
+ "name": "_UR",
212
+ "path": "/",
213
+ "sameSite": "no_restriction",
214
+ "secure": true,
215
+ "session": false,
216
+ "storeId": null,
217
+ "value": "QS=0&TQS=0"
218
+ },
219
+ {
220
+ "domain": ".bing.com",
221
+ "hostOnly": false,
222
+ "httpOnly": true,
223
+ "name": "_EDGE_S",
224
+ "path": "/",
225
+ "sameSite": null,
226
+ "secure": false,
227
+ "session": true,
228
+ "storeId": null,
229
+ "value": "SID=13F4F56AE1D668D826D2E7BFE095693C&mkt=en-us&ui=zh-cn"
230
+ },
231
+ {
232
+ "domain": ".bing.com",
233
+ "hostOnly": false,
234
+ "httpOnly": true,
235
+ "name": "_C_ETH",
236
+ "path": "/",
237
+ "sameSite": null,
238
+ "secure": true,
239
+ "session": true,
240
+ "storeId": null,
241
+ "value": "1"
242
+ },
243
+ {
244
+ "domain": ".bing.com",
245
+ "expirationDate": 1713509613.194427,
246
+ "hostOnly": false,
247
+ "httpOnly": true,
248
+ "name": "USRLOC",
249
+ "path": "/",
250
+ "sameSite": "no_restriction",
251
+ "secure": true,
252
+ "session": false,
253
+ "storeId": null,
254
+ "value": "HS=1&ELOC=LAT=35.694881439208984|LON=139.7376708984375|N=%E4%B8%9C%E4%BA%AC%EF%BC%8C%E4%B8%9C%E4%BA%AC%E9%83%BD|ELT=1|"
255
+ },
256
+ {
257
+ "domain": ".bing.com",
258
+ "expirationDate": 1711261218,
259
+ "hostOnly": false,
260
+ "httpOnly": false,
261
+ "name": "_clck",
262
+ "path": "/",
263
+ "sameSite": null,
264
+ "secure": false,
265
+ "session": false,
266
+ "storeId": null,
267
+ "value": "1rgunnp|1|fa7|0"
268
+ },
269
+ {
270
+ "domain": ".bing.com",
271
+ "expirationDate": 1714350459.038005,
272
+ "hostOnly": false,
273
+ "httpOnly": false,
274
+ "name": "_HPVN",
275
+ "path": "/",
276
+ "sameSite": "no_restriction",
277
+ "secure": true,
278
+ "session": false,
279
+ "storeId": null,
280
+ "value": "CS=eyJQbiI6eyJDbiI6NCwiU3QiOjIsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6NCwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6NCwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyMy0wMy0yNlQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIkRmdCI6bnVsbCwiTXZzIjowLCJGbHQiOjAsIkltcCI6MTJ9"
281
+ },
282
+ {
283
+ "domain": ".bing.com",
284
+ "expirationDate": 1713613017.913416,
285
+ "hostOnly": false,
286
+ "httpOnly": false,
287
+ "name": "_tarLang",
288
+ "path": "/",
289
+ "sameSite": "no_restriction",
290
+ "secure": true,
291
+ "session": false,
292
+ "storeId": null,
293
+ "value": "default=zh-Hans"
294
+ },
295
+ {
296
+ "domain": ".bing.com",
297
+ "expirationDate": 1713613017.914416,
298
+ "hostOnly": false,
299
+ "httpOnly": false,
300
+ "name": "_TTSS_IN",
301
+ "path": "/",
302
+ "sameSite": "no_restriction",
303
+ "secure": true,
304
+ "session": false,
305
+ "storeId": null,
306
+ "value": "hist=WyJlbiIsImF1dG8tZGV0ZWN0Il0="
307
+ },
308
+ {
309
+ "domain": ".bing.com",
310
+ "expirationDate": 1714294223.07599,
311
+ "hostOnly": false,
312
+ "httpOnly": false,
313
+ "name": "ABDEF",
314
+ "path": "/",
315
+ "sameSite": "no_restriction",
316
+ "secure": true,
317
+ "session": false,
318
+ "storeId": null,
319
+ "value": "V=13&ABDV=11&MRNB=1679734223075&MRB=0"
320
+ },
321
+ {
322
+ "domain": "cn.bing.com",
323
+ "expirationDate": 1679792250,
324
+ "hostOnly": true,
325
+ "httpOnly": false,
326
+ "name": "ai_session",
327
+ "path": "/",
328
+ "sameSite": "no_restriction",
329
+ "secure": true,
330
+ "session": false,
331
+ "storeId": null,
332
+ "value": "Nta2axEDipDfjyiRumPHM5|1679789611264|1679790450489"
333
+ },
334
+ {
335
+ "domain": ".bing.com",
336
+ "hostOnly": false,
337
+ "httpOnly": true,
338
+ "name": "KievRPSSecAuth",
339
+ "path": "/",
340
+ "sameSite": "no_restriction",
341
+ "secure": true,
342
+ "session": true,
343
+ "storeId": null,
344
+ "value": "FABaBBRaTOJILtFsMkpLVWSG6AN6C/svRwNmAAAEgAAACOcGOlB15yseGATuvbLnC1RjXQ5jZW2vBQYDdwFO9ATj6Grv2d/RFhIW+87h4seBFmCTKdB8ZFY8OjhfGz91gB7tePaRy3vHVXEhED29KfHYQq5Mm87amax0KqWHUSylIlhuAhaWs2ALNdpoun3cKBaznTmsO9gujSkcvusADn8uX/iDCDMeyFsy1LiOkSTDof0ihbKifxBZ1Vkb08MbJcMODaLAT6hMJIrU5Li5ljmPfLzFWrDQ/TpYTMMNQni3PpniCBNgbbd0OoGATAF6NSetdwKb6XZpnF57lJZp1oWHEgkxRuBLy2ALcIKOAMAfz5sLjBKSBOIupE40w0GdsxB9ep/kNPWOz5Q+10qIl3qeWTNG2cTJWkjFI1XKP5ei4b9kM+iu5PxfrGSulcYyV9s2rqLU++i3CYBi0Gk63CdJ4yhD71MjlCOh+VMovHhzFhWJjd6ySzOFNIBRYiQOjkjk08vldlI8B+280WBBCqjDG+1dOtD+mS6YrC79kX9usRWhNBCYX2tfdUXLUPulyHon5rPY3Lk5V9nTqtyo/h1CTOtS0O1kX18JoTZlIYg39YMMiVP7tfNONHk/0CSRIuGnjdoLtHCawuO/dmZBWo7h4owatRUkKHmac8KDBXqM9rKFLm144C8KFOU+mmmVU0QhAgrkvrAK6hfiWHzaXlxbFvHNdFJEAzYLqXi/b7/U87myshGPMCsNgw29M0fOaX6C6iqYtcplO/u57hFhQPGoyeVBbkzI6it27bUQfS6MYswSGT+iR5I64zLJhb49kuIKtyo/bvBvflwqlqp9S4IYs1/hCsaA2oh63/+jHbkHAqPHgubBRO97icFhdsFf57qA8PRxBeUWqqws7tnMA+jnAw4kGZew10ZFbg5hzbAzilPJifKXx1FzxkYVhn6SpoP7w/YcOMZmCQLK+Cy8Uvuahxr0b5S5ZebE8cATB9MM5BNyFQ7yhD7/9p/421cDqY4pkc7SaihuNQy4Wl1FhsXhvDUW8EjthYveJbHtfWDwWkflqhKAKauHV9MtOADja7H/e+EemgjjWxNN0ayaEgDrl4mCbvcJJ+Ge4teb9aEBl3Fs5Oz7qYccH65b3nUdzCy2tQEuTOAP38Wb/XxSaN8d/aHarVdDBR/FGlEtBhHlrUhCs37qCSA1owbp78i5DNtF0HVNh70JS8HgYSJNLM0ctrLEbgtkg5EP8FvmdCVOyDYwSh1+QbhIasXlyPO6U2MLc/w0p/K8VICOTAsnExrkQxXlzvpvJqIhbB0LFRAh1p0cSpT93Zrwrsm05KEe7goJCvzp7ecz8x5VLA8bwwp6xR6lgZm1CAfHtWccG78GyFJ1fXd9jihXN7RFQtYeCt2+8+IqpdjhGC8goHojqcZOH7Lp/K7wlh6SJDRr0BOzU5eeFABVuzGOl5HYnporaUgOLO9hrjPCHw=="
345
+ },
346
+ {
347
+ "domain": "cn.bing.com",
348
+ "expirationDate": 1711326450.388212,
349
+ "hostOnly": true,
350
+ "httpOnly": false,
351
+ "name": "MicrosoftApplicationsTelemetryDeviceId",
352
+ "path": "/",
353
+ "sameSite": "no_restriction",
354
+ "secure": true,
355
+ "session": false,
356
+ "storeId": null,
357
+ "value": "fe674d9f-e10a-4318-843c-1142787e92ce"
358
+ },
359
+ {
360
+ "domain": ".bing.com",
361
+ "expirationDate": 1713406681.769815,
362
+ "hostOnly": false,
363
+ "httpOnly": false,
364
+ "name": "MMCASM",
365
+ "path": "/",
366
+ "sameSite": "no_restriction",
367
+ "secure": true,
368
+ "session": false,
369
+ "storeId": null,
370
+ "value": "ID=18348FB7A1E14B7BA47CDCF8E0494824"
371
+ },
372
+ {
373
+ "domain": ".bing.com",
374
+ "hostOnly": false,
375
+ "httpOnly": false,
376
+ "name": "msau",
377
+ "path": "/",
378
+ "sameSite": "no_restriction",
379
+ "secure": true,
380
+ "session": true,
381
+ "storeId": null,
382
+ "value": "id=854BE4DF87C89A02438B0D26FFFFFFFF&msa=1&aad=0"
383
+ },
384
+ {
385
+ "domain": ".bing.com",
386
+ "expirationDate": 1712889213.97377,
387
+ "hostOnly": false,
388
+ "httpOnly": false,
389
+ "name": "MUID",
390
+ "path": "/",
391
+ "sameSite": "no_restriction",
392
+ "secure": true,
393
+ "session": false,
394
+ "storeId": null,
395
+ "value": "2DF23ABA28286F7000B8286829FA6E01"
396
+ },
397
+ {
398
+ "domain": "cn.bing.com",
399
+ "expirationDate": 1713486456.323216,
400
+ "hostOnly": true,
401
+ "httpOnly": true,
402
+ "name": "MUIDB",
403
+ "path": "/",
404
+ "sameSite": null,
405
+ "secure": false,
406
+ "session": false,
407
+ "storeId": null,
408
+ "value": "2DF23ABA28286F7000B8286829FA6E01"
409
+ },
410
+ {
411
+ "domain": ".bing.com",
412
+ "hostOnly": false,
413
+ "httpOnly": false,
414
+ "name": "SNRHOP",
415
+ "path": "/",
416
+ "sameSite": "no_restriction",
417
+ "secure": true,
418
+ "session": true,
419
+ "storeId": null,
420
+ "value": "I=&TS="
421
+ },
422
+ {
423
+ "domain": ".bing.com",
424
+ "hostOnly": false,
425
+ "httpOnly": false,
426
+ "name": "SRCHS",
427
+ "path": "/",
428
+ "sameSite": "no_restriction",
429
+ "secure": true,
430
+ "session": true,
431
+ "storeId": null,
432
+ "value": "PC=EE24"
433
+ },
434
+ {
435
+ "domain": ".bing.com",
436
+ "expirationDate": 1713145610.887994,
437
+ "hostOnly": false,
438
+ "httpOnly": false,
439
+ "name": "SRCHUID",
440
+ "path": "/",
441
+ "sameSite": "no_restriction",
442
+ "secure": true,
443
+ "session": false,
444
+ "storeId": null,
445
+ "value": "V=2&GUID=380F505F1BF74F1FB66AB49FEBB2465D&dmnchg=1"
446
+ },
447
+ {
448
+ "domain": ".bing.com",
449
+ "expirationDate": 1680854454.173319,
450
+ "hostOnly": false,
451
+ "httpOnly": true,
452
+ "name": "WLID",
453
+ "path": "/",
454
+ "sameSite": "no_restriction",
455
+ "secure": true,
456
+ "session": false,
457
+ "storeId": null,
458
+ "value": "zQNZTsJu9Ff3QaPERd04T3DLvr2xPG2DG95dkzNGo8xtAKx1zBADjk3whJyMKB5gebKqJ4JxOIuF3dTATK2TKHr0uFPhH5+PAlus5CU0nSk="
459
+ },
460
+ {
461
+ "domain": ".bing.com",
462
+ "hostOnly": false,
463
+ "httpOnly": false,
464
+ "name": "WLS",
465
+ "path": "/",
466
+ "sameSite": "no_restriction",
467
+ "secure": true,
468
+ "session": true,
469
+ "storeId": null,
470
+ "value": "C=223e260ba7d8409d&N=zexin"
471
+ },
472
+ {
473
+ "domain": ".bing.com",
474
+ "expirationDate": 1679990486,
475
+ "hostOnly": false,
476
+ "httpOnly": false,
477
+ "name": "ZHCHATSTRONGATTRACT",
478
+ "path": "/",
479
+ "sameSite": "no_restriction",
480
+ "secure": true,
481
+ "session": false,
482
+ "storeId": null,
483
+ "value": "TRUE"
484
+ }
485
+ ]
gitattributes.txt ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
5
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
12
+ *.model filter=lfs diff=lfs merge=lfs -text
13
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
14
+ *.npy filter=lfs diff=lfs merge=lfs -text
15
+ *.npz filter=lfs diff=lfs merge=lfs -text
16
+ *.onnx filter=lfs diff=lfs merge=lfs -text
17
+ *.ot filter=lfs diff=lfs merge=lfs -text
18
+ *.parquet filter=lfs diff=lfs merge=lfs -text
19
+ *.pb filter=lfs diff=lfs merge=lfs -text
20
+ *.pickle filter=lfs diff=lfs merge=lfs -text
21
+ *.pkl filter=lfs diff=lfs merge=lfs -text
22
+ *.pt filter=lfs diff=lfs merge=lfs -text
23
+ *.pth filter=lfs diff=lfs merge=lfs -text
24
+ *.rar filter=lfs diff=lfs merge=lfs -text
25
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
26
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
28
+ *.tflite filter=lfs diff=lfs merge=lfs -text
29
+ *.tgz filter=lfs diff=lfs merge=lfs -text
30
+ *.wasm filter=lfs diff=lfs merge=lfs -text
31
+ *.xz filter=lfs diff=lfs merge=lfs -text
32
+ *.zip filter=lfs diff=lfs merge=lfs -text
33
+ *.zst filter=lfs diff=lfs merge=lfs -text
34
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
requirements.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ gradio
2
+ requests
3
+ rich
4
+ websockets
5
+ EdgeGPT