abdullah040 commited on
Commit
6ee423c
·
1 Parent(s): ce24052

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -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)