Find Similar Notes
find_similar_notesRetrieve the most semantically similar notes from the vault given a source note path. Uses precomputed embeddings for fast, offline comparisons.
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). |