Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Hansimov/bing-chat-api
thunder-lord
/
gpt-4
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
4b7ddb7
gpt-4
/
cookies_constructor.py
Last commit not found
raw
Copy download link
history
blame
250 Bytes
class
CookiesConstructor
:
def
__init__
(
self
) ->
None
:
self.cookies_list = [
]
def
construct
(
self
):
self.cookies = {}
for
cookie
in
self.cookies_list:
self.cookies[cookie[
"name"
]] = cookie[
"value"
]