Hi @Manjunath Murgod
You need to include the parameter within your operations to specify the Pinecone namespace value. Each index can have multiple namespaces, and you can partition your records accordingly. Here’s an example of how to define the namespace in your extra_body
:
extra_body = {
"data_sources": [
{
"type": "pinecone",
"parameters": {
"namespace": "your-namespace-pinecone-value"
}
}
]
}
A name uniquely identifies namespaces, and almost all operations accept this parameter to limit their work to the specified namespace. If you don’t specify a namespace, Pinecone uses the default namespace, which is an empty string ""
.
For more detailed information, refer to the Pinecone documentation in the link below on namespaces.
https://docs.pinecone.io/guides/indexes/use-namespaces
If this answers your question, please click Accept Answer and Yes if this answer was helpful. Doing so would help other community members with similar issues identify the solution.