Skip to main content

April 2026

2026-04-01
AssistantBilling

Pinecone Assistant usage-based pricing and monthly Starter limits

Pinecone Assistant pricing is now fully usage-based. The hourly per-assistant fee has been removed. On Standard and Enterprise, you pay for what you use: ingestion (file uploads and updates on an assistant), storage, and chat, context, and evaluation tokens — with no base charge per assistant.For the Starter plan, Assistant included allowances are now monthly and reset each billing period (they are no longer all-time project totals). Starter includes 500,000 chat input tokens, 300,000 chat output tokens, 500,000 context retrieval tokens, and 1,000 ingestion units per month. When you upload files to an assistant, usage is measured in ingestion units (approximately one unit per chunk, ~400 tokens); multimodal PDF chunks account for more ingestion units per chunk than standard text on the same meter.Per-assistant file count limits have been removed for all plans. Usage is governed by ingestion and storage allowances, file size and page limits, and rate limits instead of a cap on the number of stored documents.For details, see Pricing and limits and Pinecone pricing.

February 2026

2026-02-19
Database

BYOC now available on AWS, GCP, and Azure

Bring Your Own Cloud (BYOC) is now available in public preview on AWS, GCP, and Azure. BYOC lets you run Pinecone’s data plane inside your own cloud account with a zero-access operating model — Pinecone never needs SSH, VPN, or inbound network access to your infrastructure.Deploy using a self-serve Pulumi-based setup wizard, with pull-based operations that execute locally in your cluster. Your vectors, metadata, and queries never leave your environment.
2026-02-01
Compliance

HIPAA compliance add-on for Standard plan

HIPAA compliance is now available as an optional add-on for Standard plan customers. For $190 per month, you get HIPAA-ready infrastructure, encrypted data storage, audit logging, enhanced security controls, and BAA execution and compliance documentation support.Full HIPAA compliance remains included with the Enterprise plan. To enable the add-on on the Standard plan, contact sales or see Understanding cost — HIPAA compliance add-on.

January 2026

2026-01-28
Assistant

Claude model deprecation for Assistant

Anthropic has deprecated the Claude 3.5 Sonnet and Claude 3.7 Sonnet models. Pinecone Assistant automatically routes all chat requests that specify claude-3-5-sonnet or claude-3-7-sonnet to Claude Sonnet 4.5, which provides enhanced intelligence at the same price. No code changes are required.To update your code to explicitly use Claude Sonnet 4.5, set model: "claude-sonnet-4-5" in your chat requests. For more information, see Choose a model.
2026-01-28
Assistant

Pinecone Assistant node for n8n

The official Pinecone Assistant n8n node brings Assistant’s end-to-end RAG capabilities directly into n8n workflows, letting you connect any data source to AI-backed automation.For more information, see the Assistant quickstart for n8n.
2026-01-27
Assistant

Claude Sonnet 4.5 now available for Assistant chat

Pinecone Assistant now supports Anthropic’s Claude Sonnet 4.5 model. To use this model, set model: "claude-sonnet-4-5" in your chat requests. In the Pinecone console, Claude Sonnet 4.5 is also available as a selection in the Chat model dropdown menu in the playground for each assistant.For more information, see Choose a model.
2026-01-23
API

Metadata filter limit: 10,000 values per $in/$nin operator

Pinecone now enforces a limit of 10,000 values per $in or $nin operator in metadata filter expressions. This limit helps ensure consistent query performance and protects shared infrastructure from excessive load caused by very large filters.Requests that exceed this limit will fail with a 400 - BAD_REQUEST error.If your application currently uses large $in filters (especially for access control), consider these approaches:
  • Namespace-based isolation (recommended): Create separate namespaces for each tenant instead of filtering by thousands of tenant IDs. This can also reduce query costs (queries on a 1 GB namespace cost 1 RU instead of 100 RUs for a 100 GB namespace with filtering).
  • Access control groups: Filter by organization, project, or role identifiers instead of individual user IDs.
  • Post-filter client-side: Retrieve a larger top K without filtering, then filter results in your application.
For more information, see Metadata filter limits and Design for multi-tenancy.
2026-01-16
API

Request-per-second limits for data plane operations

Pinecone now enforces request-per-second rate limits on data plane operations (query, upsert, delete, and update) at the namespace level. These limits are set to 100 requests per second per namespace for all plans and provide protection against excessive request rates.Request-per-second limits are enforced in addition to existing read unit and write unit limits. If you exceed a request-per-second limit, you’ll receive a 429 - TOO_MANY_REQUESTS error.For more information, see Database limits.
2026-01-15
API

Pagination support for fetch by metadata

The Fetch by metadata operation now supports pagination, allowing you to fetch large result sets in multiple requests. Use the paginationToken parameter to retrieve the next page of results.When there are more results available, the response includes a pagination object with a next token. Pass this token as the paginationToken parameter in subsequent requests to fetch the next page. When there are no more results, the response does not include a pagination object.For more information, see Fetch records by metadata.