PineconeApiException: (400)

Reason: Bad Request
HTTP response headers: HTTPHeaderDict({'content-type': 'application/json', 'Content-Length': '100', 'x-pinecone-request-latency-ms': '12', 'x-pinecone-request-id': '4756304620332880419', 'date': 'Thu, 11 Apr 2024 11:55:18 GMT', 'x-envoy-upstream-service-time': '14', 'server': 'envoy', 'Via': '1.1 google', 'Alt-Svc': 'h3=":443"; ma=2592000,h3-29=":443"; ma=2592000'})
HTTP response body: {"code":3,"message":"Vector dimension 8 does not match the dimension of the index 384","details":[]}```

Hello,

The key information in the error message is:

Vector dimension 8 does not match the dimension of the index 384

It looks like the application tried to upload a vector with only 8 dimensions when the index is setup for 384 dimensions.

I’m unaware of any embedding models that produce 8 dimensions, I suspect this might be a coding issue.