kartikeyarana commited on
Commit
650f2c4
·
verified ·
1 Parent(s): 088e5aa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -59,7 +59,7 @@ def main():
59
  docsearch = FAISS.from_documents(text_chunks, embeddings)
60
  docsearch.save_local(DB_FAISS_PATH)
61
 
62
- llm = CTransformers(model="meta-llama/Llama-2-7b-chat-hf",
63
  model_type="llama",
64
  max_new_tokens=512,
65
  temperature=0.1)
 
59
  docsearch = FAISS.from_documents(text_chunks, embeddings)
60
  docsearch.save_local(DB_FAISS_PATH)
61
 
62
+ llm = CTransformers(model="models/llama-2-7b-chat.ggmlv3.q4_0.bin",
63
  model_type="llama",
64
  max_new_tokens=512,
65
  temperature=0.1)