Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abdullah040
/
qwert
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
6ee423c
qwert
/
app.py
abdullah040
Create app.py
6ee423c
almost 2 years ago
raw
Copy download link
history
blame
178 Bytes
import
requests
url =
'https://gpt4all.io/models/ggml-mpt-7b-chat.bin'
response = requests.get(url)
with
open
(
'ggml-mpt-7b-chat.bin'
,
'wb'
)
as
f:
f.write(response.content)