Spaces:
Paused
Paused
AFischer1985
commited on
Commit
·
8278b34
1
Parent(s):
14f05b9
Update app.py
Browse files
app.py
CHANGED
@@ -5,7 +5,8 @@ from llama_cpp import Llama
|
|
5 |
import gradio as gr
|
6 |
|
7 |
#url="https://huggingface.co/TheBloke/WizardLM-13B-V1.2-GGUF/resolve/main/wizardlm-13b-v1.2.Q4_0.gguf"
|
8 |
-
url="https://huggingface.co/TheBloke/Mixtral-8x7B-Instruct-v0.1-GGUF/resolve/main/mixtral-8x7b-instruct-v0.1.Q4_0.gguf?download=true"
|
|
|
9 |
response = requests.get(url)
|
10 |
with open("./model.gguf", mode="wb") as file:
|
11 |
file.write(response.content)
|
|
|
5 |
import gradio as gr
|
6 |
|
7 |
#url="https://huggingface.co/TheBloke/WizardLM-13B-V1.2-GGUF/resolve/main/wizardlm-13b-v1.2.Q4_0.gguf"
|
8 |
+
#url="https://huggingface.co/TheBloke/Mixtral-8x7B-Instruct-v0.1-GGUF/resolve/main/mixtral-8x7b-instruct-v0.1.Q4_0.gguf?download=true"
|
9 |
+
url="https://huggingface.co/TheBloke/Mistral-7B-Instruct-v0.2-GGUF/resolve/main/mistral-7b-instruct-v0.2.Q4_0.gguf?download=true"
|
10 |
response = requests.get(url)
|
11 |
with open("./model.gguf", mode="wb") as file:
|
12 |
file.write(response.content)
|