kartikeyarana commited on
Commit
c61944d
·
verified ·
1 Parent(s): 42ef98f

Update app.py

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