Staticaliza commited on
Commit
0cb24f7
·
verified ·
1 Parent(s): d5e09f3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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 = "HuggingFaceTB/SmolLM2-1.7B-Instruct-GGUF"
15
- FILE = "smollm2-1.7b-instruct-q4_k_m.gguf"
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
- # n_threads=48,
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