Replies: 1 comment
-
🤖 Hi there, From your code, it seems like you're trying to persist the index created by Based on the similar issues I found in the LlamaIndex repository, it seems like when persisting to a remote vector store, everything is actually persisted on the remote vector store itself. Therefore, you might not see a Here's how you can reconnect to your remote vector store: vector_store = DocArrayHnswVectorStore(work_dir=your_work_dir)
storage_context = StorageContext.from_defaults(vector_store=vector_store)
index = GPTVectorStoreIndex([], storage_context=storage_context) Please replace Also, it's important to note that you don't need to call If you're still having trouble, could you please provide more information about your setup? Specifically, it would be helpful to know more about your I hope this helps! Let me know if you have any other questions. Best, Sources
This response is meant to be useful and save you time. It is not meant to be a precise solution, but rather a starting point for your own research. Help me be more useful! Please leave a 👍 if this is helpful and 👎 if it is irrelevant. If you want to continue the conversation, start your reply with @dosu-bot. |
Beta Was this translation helpful? Give feedback.
-
Question Validation
Question
Hi teams, I am tring follow the save local document to save the index which created by
`
, But when I go through the local file, there is no vector_stores file. So it cant not be load by
load_index_from_storage
The director only have:
docstore.json
graph_store.json
index_store.json
May I have help from you.
Thank you very much!
Beta Was this translation helpful? Give feedback.
All reactions