zk_find_similar_notes
Identifies and retrieves notes similar to a specified reference note based on similarity threshold and result limit, aiding in Zettelkasten knowledge management.
Instructions
Find notes similar to a given note. Args: note_id: ID of the reference note threshold: Similarity threshold (0.0-1.0) limit: Maximum number of results to return
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
note_id | Yes | ||
threshold | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 5,
"title": "Limit",
"type": "integer"
},
"note_id": {
"title": "Note Id",
"type": "string"
},
"threshold": {
"default": 0.3,
"title": "Threshold",
"type": "number"
}
},
"required": [
"note_id"
],
"title": "zk_find_similar_notesArguments",
"type": "object"
}