Find answers from the community

Updated last month

PineconeVectorStore Not Working with SimpleComposableMemory and Agent

is it just me or does PineconeVectorStore not work when used in SimpleComposableMemory and agent?

getting this error msg:

Plain Text
pinecone.core.openapi.shared.exceptions.NotFoundException: (404)
Reason: Not Found
HTTP response headers: HTTPHeaderDict({'Date': 'Tue, 15 Oct 2024 15:46:11 GMT', 'Content-Type': 'application/json', 'Content-Length': '55', 'Connection': 'keep-alive', 'x-pinecone-request-latency-ms': '41', 'x-pinecone-request-id': '6886694976858348241', 'x-envoy-upstream-service-time': '42', 'server': 'envoy'})
HTTP response body: {"code":5,"message":"Namespace not found","details":[]}
s
L
3 comments
seems like something borked with the setup of pinecone?
just doing the standard
Plain Text
pc = Pinecone(api_key=os.getenv("PINECONE_API_KEY"))
vector_store = PineconeVectorStore(
  pc.Index(index_name)
)


ended up with another vector db
Add a reply
Sign up and join the conversation on Discord