Find answers from the community

Updated 4 months ago

PineconeVectorStore Not Working with SimpleComposableMemory and Agent

At a glance

The community member is experiencing an issue with the PineconeVectorStore when used in SimpleComposableMemory and an agent. They are receiving a NotFoundException error with a message indicating that the namespace is not found. Other community members have suggested that the issue may be related to the setup of Pinecone, and one member has mentioned trying a different approach using the standard Pinecone setup, but they still ended up with another vector database. There is no explicitly marked answer in the comments.

Useful resources
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