Vector Dimension Issue

Vector dimension 1536 does not match the dimension of the index 512. I am not sure, why I’m receiving this error, I’m using pinecone and open ai text embedding 3 small to build a small RAG database retrieval demo workflow. ```
PineconeBadRequestError: Vector dimension 1536 does not match the dimension of the index 512 at mapHttpStatusError (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/@[email protected]/node_modules/@pinecone-database/pinecone/src/errors/http.ts:150:14) at /usr/local/lib/node_modules/n8n/node_modules/.pnpm/@[email protected]/node_modules/@pinecone-database/pinecone/src/errors/handling.ts:23:30 at step (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/@[email protected]/node_modules/@pinecone-database/pinecone/dist/errors/handling.js:33:23) at Object.next (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/@[email protected]/node_modules/@pinecone-database/pinecone/dist/errors/handling.js:14:53) at fulfilled (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/@[email protected]/node_modules/@pinecone-database/pinecone/dist/errors/handling.js:5:58) at processTicksAndRejections (node:internal/process/task_queues:95:5)

The dimension value you set while creating pinecone vector store should be exactly be equal to dimension of embeddings ai model. Research about the ai model using Google to check whether you are using the correct model

Ok thanks.. will check