Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ url = "https://huggingface.co/TheBloke/Nous-Hermes-13B-GGML/resolve/main/nous-he
|
|
9 |
|
10 |
response = requests.get(url)
|
11 |
|
12 |
-
with open("nous-hermes-13b.ggmlv3.q4_0.bin",w) as f:
|
13 |
f.write(response.content)
|
14 |
|
15 |
print("DONE")
|
|
|
9 |
|
10 |
response = requests.get(url)
|
11 |
|
12 |
+
with open("nous-hermes-13b.ggmlv3.q4_0.bin","w") as f:
|
13 |
f.write(response.content)
|
14 |
|
15 |
print("DONE")
|