Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,7 @@ from llama_cpp import Llama
|
|
7 |
from huggingface_hub import hf_hub_download #load from huggingfaces
|
8 |
|
9 |
|
10 |
-
llm = Llama(model_path= hf_hub_download(repo_id="TheBloke/
|
11 |
|
12 |
history = []
|
13 |
|
|
|
7 |
from huggingface_hub import hf_hub_download #load from huggingfaces
|
8 |
|
9 |
|
10 |
+
llm = Llama(model_path= hf_hub_download(repo_id="TheBloke/stablecode-instruct-alpha-3b-GGML", filename="stablecode-instruct-alpha-3b.ggmlv1.q5_1.bin"), n_ctx=6000) #download model from hf/ n_ctx=2048 for high ccontext length
|
11 |
|
12 |
history = []
|
13 |
|