chroma_peek_collection
Inspect documents within a specified Chroma collection by specifying the collection name and desired document limit. Enables quick viewing of data stored in the database.
Instructions
Peek at documents in a Chroma collection.
Args:
collection_name: Name of the collection to peek into
limit: Number of documents to peek at
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection_name | Yes | ||
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"collection_name": {
"title": "Collection Name",
"type": "string"
},
"limit": {
"default": 5,
"title": "Limit",
"type": "integer"
}
},
"required": [
"collection_name"
],
"title": "chroma_peek_collectionArguments",
"type": "object"
}