enadewan commited on
Commit
6ce67c7
1 Parent(s): 2fb1e3a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ from typing import Any, Dict, List
13
  from InstructorEmbedding import INSTRUCTOR
14
  from langchain.embeddings import HuggingFaceInstructEmbeddings
15
  instructor_embeddings = HuggingFaceInstructEmbeddings(model_name="hkunlp/instructor-xl")
16
- HUGGINGFACEHUB_API_TOKEN='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'
17
  new_vectorstore = FAISS.load_local("./faiss_docs_xl_index", instructor_embeddings )
18
  llm = HuggingFaceHub(repo_id="declare-lab/flan-alpaca-large", model_kwargs={"temperature": 0.1, "max_length": 512},huggingfacehub_api_token= "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")
19
 
 
13
  from InstructorEmbedding import INSTRUCTOR
14
  from langchain.embeddings import HuggingFaceInstructEmbeddings
15
  instructor_embeddings = HuggingFaceInstructEmbeddings(model_name="hkunlp/instructor-xl")
16
+
17
  new_vectorstore = FAISS.load_local("./faiss_docs_xl_index", instructor_embeddings )
18
  llm = HuggingFaceHub(repo_id="declare-lab/flan-alpaca-large", model_kwargs={"temperature": 0.1, "max_length": 512},huggingfacehub_api_token= "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")
19