Is the Llama Index and Pinecone Integration updated for OpenAI text-embedding-3 models? I can only retrieve the correct nodes using ada (super simple test: directly query a chunk/node in the index and see if the retrieved node is the same), but this fails for text-embedding-3. However, this same test does pass when I use the default in-memory Llama Index vector index. I build the Pinecone index following this doc:
https://docs.llamaindex.ai/en/stable/examples/vector_stores/PineconeIndexDemo/?h=pinecone, and change the embedding model using
Settings.embed_model=OpenAIEmbedding(model="text-embedding-3-small")