note search

This commit is contained in:
Yanxin Lu
2026-04-03 15:28:40 -07:00
parent 7e5bbabb29
commit bb1b1dad2f
11 changed files with 2631 additions and 0 deletions

18
notesearch/pyproject.toml Normal file
View File

@@ -0,0 +1,18 @@
[project]
name = "notesearch"
version = "0.1.0"
description = "Local vector search over markdown notes using LlamaIndex + Ollama"
requires-python = ">=3.11"
dependencies = [
"llama-index",
"llama-index-embeddings-ollama",
]
[project.scripts]
notesearch = "notesearch.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
[dependency-groups]
dev = ["pytest"]