Can someone help clarify my doubts?
After creating nodes:
nodes = splitter.get_nodes_from_documents(documents)
At this stage, node embeddings have not yet been generated.
Embeddings are created when we make an index. Right?
vector_store = QdrantVectorStore(client=QDRANT_CLIENT, collection_name=collection_name)
storage_context = StorageContext.from_defaults(vector_store=vector_store)
index = VectorStoreIndex(
nodes,
storage_context=storage_context,
insert_batch_size=10,
embed_model = embed_model,
)
So how can we view our embeddings? Also, in Qdrant, it shows 'embedding:null'. Why is that?