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...
abdullah040
commited on
May 22, 2023
Commit
6ee423c
·
1 Parent(s):
ce24052
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import requests
2
+
3
+
url = 'https://gpt4all.io/models/ggml-mpt-7b-chat.bin'
4
+
5
+
response = requests.get(url)
6
+
7
+
with open('ggml-mpt-7b-chat.bin', 'wb') as f:
8
+
f.write(response.content)