From ce23113186800bd5749471b7a578c2428774a798 Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" Date: Fri, 6 Feb 2026 11:12:58 +0000 Subject: [PATCH] Note list_vectors not in Python SDK yet Co-authored-by: elithrar --- src/content/docs/vectorize/best-practices/list-vectors.mdx | 6 ++++++ src/content/docs/vectorize/reference/client-api.mdx | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/src/content/docs/vectorize/best-practices/list-vectors.mdx b/src/content/docs/vectorize/best-practices/list-vectors.mdx index 64a0d9743bad66b..a659555f594cb84 100644 --- a/src/content/docs/vectorize/best-practices/list-vectors.mdx +++ b/src/content/docs/vectorize/best-practices/list-vectors.mdx @@ -8,6 +8,12 @@ sidebar: The list-vectors operation allows you to enumerate all vector identifiers in a Vectorize index using paginated requests. This guide covers best practices for efficiently using this operation. +:::note[Python SDK availability] + +The `client.vectorize.indexes.list_vectors()` method is not yet available in the current release of the [Cloudflare Python SDK](https://pypi.org/project/cloudflare/). While the method appears in the [API reference](/api/python/resources/vectorize/subresources/indexes/methods/list_vectors/), it has not been included in a published SDK version as of v4.3.1. In the meantime, you can use the [REST API](/api/resources/vectorize/subresources/indexes/methods/list_vectors/) or the Wrangler CLI to list vectors. + +::: + ## When to use list-vectors Use list-vectors for: diff --git a/src/content/docs/vectorize/reference/client-api.mdx b/src/content/docs/vectorize/reference/client-api.mdx index a25cbc2ca67b318..98014d1e7944185 100644 --- a/src/content/docs/vectorize/reference/client-api.mdx +++ b/src/content/docs/vectorize/reference/client-api.mdx @@ -129,6 +129,12 @@ Retrieves the configuration of a given index directly, including its configured ### List Vectors +:::note[Python SDK availability] + +The `client.vectorize.indexes.list_vectors()` method is not yet available in the current release of the [Cloudflare Python SDK](https://pypi.org/project/cloudflare/). While the method appears in the [API reference](/api/python/resources/vectorize/subresources/indexes/methods/list_vectors/), it has not been included in a published SDK version as of v4.3.1. In the meantime, you can use the [REST API](/api/resources/vectorize/subresources/indexes/methods/list_vectors/) or the Wrangler CLI to list vectors. + +::: + List all vector identifiers in an index using paginated requests, returning up to 1000 vector identifiers per page. ```sh