update_document
Modify and update content or metadata of an existing document in the Chroma vector database using a specified document ID.
Instructions
Update an existing document in the Chroma vector database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
document_id | Yes | ||
metadata | No |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"type": "string"
},
"document_id": {
"type": "string"
},
"metadata": {
"additionalProperties": true,
"type": "object"
}
},
"required": [
"document_id",
"content"
],
"type": "object"
}