Search code examples
pinecone

pinecone ingest requested feature 'Namespaces' is not supported


Im following this tutorial https://github.com/chroma-core/gpt4-pdf-chatbot-langchain-chroma

but get an error when ingesting the PDF to Pinecone

error [PineconeError: PineconeClient: Error calling upsert: PineconeError: The requested feature 'Namespaces' is not supported by the current index type 'Starter'.]

do I need to upgrade the pinecone tier?


Solution

  • Namespace is not for free tier or starter, you can leave namespace empty this issue will be solved; here I;ve comment out the namespace:-

    await PineconeStore.fromDocuments(
      pageLevelDocs,
      embeddings,
      {
        pineconeIndex,
        // namespace: createdFile.id,
      }
    )