Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 443 Bytes

File metadata and controls

37 lines (25 loc) · 443 Bytes

Setup

$ uv sync

Run

First, make embedding list

$ uv run embed_markdown.py path/to/markdowns

vectors.jsonl will be saved.

Next, make relation graph from vectors.jsonl

$ uv run create_similarity_graph.py --mode save_graph

then, graph.html will be saved.

Development

$ uv sync --extra dev

format check

$ uv run ruff format .
$ uv run ruff check . --fix
$ uv run mypy .