Compare commits
3 commits
feat/colbe
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 059ad21ed3 | |||
| afdc211813 | |||
| b0df7ac7bc |
6 changed files with 9 additions and 5 deletions
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
[](https://git.opensourcesolarpunk.com/Circuit-Forge/pagepiper)
|
[](https://git.opensourcesolarpunk.com/Circuit-Forge/pagepiper)
|
||||||
[](LICENSE)
|
[](LICENSE)
|
||||||
[](https://git.opensourcesolarpunk.com/Circuit-Forge/pagepiper/releases)
|
[](https://git.opensourcesolarpunk.com/Circuit-Forge/pagepiper/releases)
|
||||||
|
|
||||||
Self-hosted document and spreadsheet search — PDF, EPUB, DOCX, ODT, Apple Pages, XLSX, ODS, and Apple Numbers — with BM25 (Best Match 25) full-text indexing and LLM (large language model) synthesis. Drop your documents in, ask a question, get an answer that tells you exactly which page to turn to.
|
Self-hosted document and spreadsheet search — PDF, EPUB, DOCX, ODT, Apple Pages, XLSX, ODS, and Apple Numbers — with BM25 (Best Match 25) full-text indexing and LLM (large language model) synthesis. Drop your documents in, ask a question, get an answer that tells you exactly which page to turn to.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,13 +10,15 @@ Try it: [pagepiper.circuitforge.tech](https://pagepiper.circuitforge.tech)
|
||||||
|
|
||||||
### Library
|
### Library
|
||||||
|
|
||||||

|
{ .only-light }
|
||||||
|
{ .only-dark }
|
||||||
|
|
||||||
Scan your PDF directory to index documents, or upload individual PDFs directly. Each document shows page count and shelving status.
|
Scan your PDF directory to index documents, or upload individual PDFs directly. Each document shows page count and shelving status.
|
||||||
|
|
||||||
### Chat
|
### Chat
|
||||||
|
|
||||||

|
{ .only-light }
|
||||||
|
{ .only-dark }
|
||||||
|
|
||||||
Ask questions across your indexed documents. Results cite the source document and page number.
|
Ask questions across your indexed documents. Results cite the source document and page number.
|
||||||
|
|
||||||
|
|
|
||||||
BIN
docs/screenshots/01-library-dark.png
Normal file
BIN
docs/screenshots/01-library-dark.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 28 KiB |
BIN
docs/screenshots/02-chat-dark.png
Normal file
BIN
docs/screenshots/02-chat-dark.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 27 KiB |
|
|
@ -31,6 +31,7 @@ theme:
|
||||||
|
|
||||||
markdown_extensions:
|
markdown_extensions:
|
||||||
- admonition
|
- admonition
|
||||||
|
- attr_list
|
||||||
- pymdownx.details
|
- pymdownx.details
|
||||||
- pymdownx.superfences:
|
- pymdownx.superfences:
|
||||||
custom_fences:
|
custom_fences:
|
||||||
|
|
@ -59,6 +60,7 @@ nav:
|
||||||
- Architecture: reference/architecture.md
|
- Architecture: reference/architecture.md
|
||||||
- Tier System: reference/tier-system.md
|
- Tier System: reference/tier-system.md
|
||||||
- Environment Variables: reference/environment-variables.md
|
- Environment Variables: reference/environment-variables.md
|
||||||
|
- All CF Docs: https://docs.circuitforge.tech
|
||||||
|
|
||||||
extra_css:
|
extra_css:
|
||||||
- stylesheets/theme.css
|
- stylesheets/theme.css
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "pagepiper"
|
name = "pagepiper"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
description = "Self-hosted PDF library manager with RAG chat and page-level citations"
|
description = "Self-hosted document and spreadsheet library manager with RAG chat and page-level citations"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.11"
|
requires-python = ">=3.11"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue