Download embedding model to ~/.codegraph/models on install

The nomic-ai model is now downloaded during npm install via a postinstall
script and stored globally in ~/.codegraph/models (shared across projects)
instead of per-project in .codegraph/models.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Colby McHenry
2026-01-21 13:29:03 -06:00
co-authored by Claude Opus 4.5
parent 3c2022375a
commit 3ad4d5b35d
4 changed files with 75 additions and 2 deletions
+2
View File
@@ -9,10 +9,12 @@
},
"files": [
"dist",
"scripts",
"README.md"
],
"scripts": {
"build": "tsc && npm run copy-assets",
"postinstall": "node scripts/postinstall.js",
"copy-assets": "cp -r src/extraction/queries dist/extraction/ && cp src/db/schema.sql dist/db/",
"dev": "tsc --watch",
"cli": "npm run build && node dist/bin/codegraph.js",