From graphrag_neo4j/graphrag.py:
in function ingest_to_qdrant
it seems like the embedding being upserted does not correspond to the node_id.
Each embedding is generated from each line of raw_data, while node_id is generated by the LLM in an arbitrary order.
That is, the node_id and embedding pair that are being upserted are not related to each other.
Am I getting it right?
From
graphrag_neo4j/graphrag.py:in function
ingest_to_qdrantit seems like the
embeddingbeing upserted does not correspond to thenode_id.Each
embeddingis generated from each line ofraw_data, whilenode_idis generated by the LLM in an arbitrary order.That is, the
node_idandembeddingpair that are being upserted are not related to each other.Am I getting it right?