LangChain - Embeddings and Vector Stores
What is wrong with this Pinecone query code?
index = pinecone.Index('my-index')
results = index.query(vector=[0.1, 0.2], top_k=3)
print(results)