find_similar_clusters
Identify clusters with high similarity to a specified cluster using a customizable threshold. Essential for analyzing patterns and relationships in AI memory systems.
Instructions
Find clusters similar to a given cluster
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cluster_id | Yes | UUID of the reference cluster | |
threshold | No | Minimum similarity threshold |
Input Schema (JSON Schema)
{
"properties": {
"cluster_id": {
"description": "UUID of the reference cluster",
"type": "string"
},
"threshold": {
"default": 0.7,
"description": "Minimum similarity threshold",
"type": "number"
}
},
"required": [
"cluster_id"
],
"type": "object"
}