qwert / app.py
abdullah040's picture
Create app.py
6ee423c
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)