zac commited on
Commit
9a5cb26
·
1 Parent(s): c4115d2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,7 +15,7 @@ from langchain.memory import ConversationBufferMemory
15
  from langchain.chains import ConversationalRetrievalChain
16
 
17
 
18
- llm = Llama(model_path= hf_hub_download(repo_id="TheBloke/Llama-2-7B-32K-Instruct-GGUF", filename="llama-2-7b-32k-instruct.Q4_K_M.gguf"), n_ctx=2048) #download model from hf/ n_ctx=2048 for high ccontext length
19
 
20
  history = []
21
 
 
15
  from langchain.chains import ConversationalRetrievalChain
16
 
17
 
18
+ llm = Llama(model_path= hf_hub_download(repo_id="TheBloke/Pygmalion-2-13B-SuperCOT2-GGUF", filename="pygmalion-2-13b-supercot2.Q4_K_M.gguf"), n_ctx=2048) #download model from hf/ n_ctx=2048 for high ccontext length
19
 
20
  history = []
21