├── .beads ├── .gitignore ├── .local_version ├── README.md ├── config.yaml ├── issues.jsonl └── metadata.json ├── .env ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── bun.lock ├── package.json ├── scripts ├── migration │ ├── export-pg16.mjs │ ├── import-pg17.ts │ └── regenerate-embeddings.ts └── setup.sh ├── src ├── cli.ts ├── index.ts ├── services │ ├── Database.ts │ ├── Migration.ts │ ├── Ollama.ts │ └── PDFExtractor.ts └── types.ts └── tsconfig.json /.beads/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/.beads/.gitignore -------------------------------------------------------------------------------- /.beads/.local_version: -------------------------------------------------------------------------------- 1 | 0.29.0 2 | -------------------------------------------------------------------------------- /.beads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/.beads/README.md -------------------------------------------------------------------------------- /.beads/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/.beads/config.yaml -------------------------------------------------------------------------------- /.beads/issues.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/.beads/issues.jsonl -------------------------------------------------------------------------------- /.beads/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/.beads/metadata.json -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/.env -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/README.md -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/bun.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/package.json -------------------------------------------------------------------------------- /scripts/migration/export-pg16.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/scripts/migration/export-pg16.mjs -------------------------------------------------------------------------------- /scripts/migration/import-pg17.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/scripts/migration/import-pg17.ts -------------------------------------------------------------------------------- /scripts/migration/regenerate-embeddings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/scripts/migration/regenerate-embeddings.ts -------------------------------------------------------------------------------- /scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/scripts/setup.sh -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/services/Database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/src/services/Database.ts -------------------------------------------------------------------------------- /src/services/Migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/src/services/Migration.ts -------------------------------------------------------------------------------- /src/services/Ollama.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/src/services/Ollama.ts -------------------------------------------------------------------------------- /src/services/PDFExtractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/src/services/PDFExtractor.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/pdf-library/HEAD/tsconfig.json --------------------------------------------------------------------------------