zac commited on
Commit
1ad5a59
·
1 Parent(s): d3200a3

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/Dolphin-Llama2-7B-GGML", filename="dolphin-llama2-7b.ggmlv3.q4_1.bin"), 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/LlongOrca-7B-16K-GGUF", filename="llongorca-7b-16k.Q5_K_M.gguf"), n_ctx=2048) #download model from hf/ n_ctx=2048 for high ccontext length
19
 
20
  history = []
21