The community member is using an entity extractor and has created a vector index that they have persisted locally. They are now querying the data without loading the index from the persisted directory or creating the nodes again, and they want to know how to find out what entities are retrieved for a particular query while doing so.
Another community member is trying to do a similar thing, reading from a persistent vector index, but they are using TypeScript and are having trouble with it. They ask the original poster to share a code snippet, even if it's in Python.
A third community member suggests that the second community member could try using the https://ts.llamaindex.ai/modules/low_level/storage resource to help with reading the persisted vector index.
The second community member thanks the third community member, indicating that this is what they were looking for.
I am using entity extractor for my data. I created the vector index and persisted locally. now while querying I am not loading the index from persists directory and not creating the nodes again. Can I find out what entities are retrieved for a particular query while doing so?
Hey not much of help here. But I am trying to do what you are already doing. That is, reading from persistent vector index. I am using TS, and I am a bit lost how do it, I am able to persit and create a local file, but I am not able to read it. Can you share a code snippet? Even if it is in Python?