Find Similar Notes
find_similar_notesFind notes semantically similar to a given note using precomputed chunk embeddings, without any API calls.
Instructions
Given a note path, return the K most semantically similar notes from the index (excluding the source note). Uses the source note's existing chunk embeddings — no live API call to the embedding provider, so this is fast and free. Run index_vault first to populate embeddings for both the source and the candidates.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Vault-relative path to the source note, e.g. 'projects/atlas.md'. | |
| limit | No | Maximum number of similar notes to return (1-100, default: 10). |