chroma-core/chroma · error · ValueError
Batch size {len(batch[0])} exceeds maximum batch size {limit
Error message
Batch size {len(batch[0])} exceeds maximum batch size {limits['max_batch_size']} What it means
Error "Batch size {len(batch[0])} exceeds maximum batch size {limits['max_batch_size']}" thrown in chroma-core/chroma.
Source
Thrown at chromadb/api/types.py:1482
f"Expected images to be a non-empty list, got {len(images)} images"
)
for image in images:
if not is_image(image):
raise ValueError(f"Expected image to be a numpy array, got {image}")
def validate_batch(
batch: Tuple[
IDs,
Optional[Union[Embeddings, PyEmbeddings]],
Optional[Metadatas],
Optional[Documents],
Optional[URIs],
],
limits: Dict[str, Any],
) -> None:
if len(batch[0]) > limits["max_batch_size"]:
raise ValueError(
f"Batch size {len(batch[0])} exceeds maximum batch size {limits['max_batch_size']}"
)
def convert_np_embeddings_to_list(embeddings: Embeddings) -> PyEmbeddings:
# Cast the result to PyEmbeddings to ensure type compatibility
return cast(PyEmbeddings, [embedding.tolist() for embedding in embeddings])
def convert_list_embeddings_to_np(embeddings: PyEmbeddings) -> Embeddings:
return [np.array(embedding) for embedding in embeddings]
@runtime_checkable
class SparseEmbeddingFunction(Protocol[D]):
"""Protocol for sparse embedding functions.
To implement a new sparse embedding function, you need to implement the following methods:View on GitHub (pinned to aecdd12c8a)
When it happens
Trigger: Thrown at chromadb/api/types.py:1482 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of chroma-core/chroma@aecdd12c8a (2026-08-16).
Data as JSON: /api/errors/62bfce56d1c27fe9.
Report an issue: GitHub.