Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -11,8 +11,8 @@ from huggingface_hub import hf_hub_download
|
|
11 |
# Variables
|
12 |
HF_TOKEN = os.environ.get("HF_TOKEN")
|
13 |
|
14 |
-
REPO = "
|
15 |
-
FILE = "
|
16 |
|
17 |
TIMEOUT = 60
|
18 |
|
@@ -21,7 +21,7 @@ MAX_SEED = 9007199254740991
|
|
21 |
model = Llama(
|
22 |
model_path=hf_hub_download(repo_id=REPO, filename=FILE, token=HF_TOKEN),
|
23 |
n_ctx=32768,
|
24 |
-
|
25 |
n_batch=512,
|
26 |
n_gpu_layers=0,
|
27 |
verbose=True
|
|
|
11 |
# Variables
|
12 |
HF_TOKEN = os.environ.get("HF_TOKEN")
|
13 |
|
14 |
+
REPO = "Novaciano/Llama-3.2_1b_Uncensored_RP_Aesir_GGUF"
|
15 |
+
FILE = "Llama-3.2_1b_Uncensored_RP_Aesir.gguf"
|
16 |
|
17 |
TIMEOUT = 60
|
18 |
|
|
|
21 |
model = Llama(
|
22 |
model_path=hf_hub_download(repo_id=REPO, filename=FILE, token=HF_TOKEN),
|
23 |
n_ctx=32768,
|
24 |
+
n_threads=4,
|
25 |
n_batch=512,
|
26 |
n_gpu_layers=0,
|
27 |
verbose=True
|