Spaces:
Build error
Build error
Update app.py
Browse files
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:
|