Is document metadata also embedded if I use VectorStoreIndex #13912
rishabhgupta93
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi Experts,
I have a query regarding the creation of a VectorStoreIndex from nodes generated from documents. Here is the process I'm following:
_scanned_document = Document(
text=scanned_output_text,
metadata=scanned_output
)
self._Nodes = self._nodeparser.get_nodes_from_documents(documents=scanned_document, show_progress=True)
VectorStoreIndex(self._Nodes, storage_context=self._storage_context)
_
Could you please clarify whether embeddings are created solely for the text part of the document, or are embeddings generated for both the text and the metadata?
Beta Was this translation helpful? Give feedback.
All reactions