Hammad112 commited on
Commit
080cd13
·
verified ·
1 Parent(s): fd222a0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -46,7 +46,7 @@ def get_text_chunks(text):
46
  # Function to create an in-memory FAISS vector store
47
  def get_vector_store(text_chunks):
48
  try:
49
- embeddings = GoogleGenerativeAIEmbeddings(model="models/embedding-001")
50
  vector_store = FAISS.from_texts(text_chunks, embedding=embeddings)
51
  return vector_store
52
  except Exception as e:
 
46
  # Function to create an in-memory FAISS vector store
47
  def get_vector_store(text_chunks):
48
  try:
49
+ embeddings = GoogleGenerativeAIEmbeddings(model="models/embedding-001",api_key=google_api_key)
50
  vector_store = FAISS.from_texts(text_chunks, embedding=embeddings)
51
  return vector_store
52
  except Exception as e: