Hi folks, a vector store question: do vector stores on GPT index (e.g. GPTSimpleVectorIndex) support having separate embedding functions for docs and queries?
Possibly a noob python question: any tips on sharing a gpt index object (not too concerned about the type of index) between python processes?
For context, I'm running a flask application, and I'd like to have multiple workers to serve concurrent requests. I'd like them all to access the same instances of gpt indices that i end up generating, rather than building them multiple times.