File size: 178 Bytes
6ee423c
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
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)