Tool details
| Field | Value |
|---|---|
| Name | delete_file_chunk_embeddings |
| Group | Search |
Playground
Input schema
Input schema
{
"type": "object",
"properties": {
"project_reference": {
"type": "string",
"description": "Project identifier or slug that scopes the tool call."
},
"chunk_ids": {
"type": "array",
"items": {
"type": "string",
"format": "uuid",
"description": "One chunk id item supplied to the tool."
},
"minItems": 1,
"maxItems": 100,
"description": "Provide one or more chunk id values."
},
"dimension": {
"type": "string",
"enum": [
"768",
"1024",
"1536",
"3072",
"4096"
],
"description": "Embedding vector dimension to use when indexing or querying semantic search content."
},
"confirm": {
"type": "boolean",
"description": "Must be true to confirm deletion"
}
},
"required": [
"project_reference",
"chunk_ids",
"dimension",
"confirm"
],
"additionalProperties": false,
"description": "Input schema for the delete_file_chunk_embeddings tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
Output schema
{
"type": "object",
"properties": {
"deleted": {
"type": "number",
"description": "The deleted associated with this tool result."
}
},
"required": [
"deleted"
],
"additionalProperties": false,
"description": "Structured result returned by the delete_file_chunk_embeddings tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}