ddovidovich commited on
Commit
f4e8d39
·
1 Parent(s): be55b3c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -11,7 +11,8 @@ import llama_cpp
11
  from llama_cpp import Llama
12
  from huggingface_hub import hf_hub_download
13
 
14
- llm = Llama(model_path= hf_hub_download(repo_id="TheBloke/Llama-2-7b-Chat-GGUF", filename="llama-2-7b-chat.Q4_K_M.gguf"), n_ctx=2048)
 
15
 
16
  def list_to_numpy(obj):
17
  if isinstance(obj, list):
 
11
  from llama_cpp import Llama
12
  from huggingface_hub import hf_hub_download
13
 
14
+ #llm = Llama(model_path= hf_hub_download(repo_id="TheBloke/Llama-2-7b-Chat-GGUF", filename="llama-2-7b-chat.Q4_K_M.gguf"), n_ctx=2048)
15
+ llm = Llama(model_path= hf_hub_download(repo_id="DFofanov78/ruGPT-3.5-13B-GGUF", filename="ruGPT-3.5-13B-Q4_0.gguf"), n_ctx=2048)
16
 
17
  def list_to_numpy(obj):
18
  if isinstance(obj, list):