SwordsAndSorceryRulesLawyer / pyproject.toml
drakosfire's picture
Reorganized the project into a module called document processing, and execute through a single entry file pdf_to_embeddings.py
824bd32
raw
history blame contribute delete
543 Bytes
[tool.poetry]
name = "ruleslawyer"
version = "0.1.0"
description = "Ingest PDFs, process into a json, generate embeddings, and load into a chat interface for RAG."
authors = ["Alan Meigs <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
docling-core = "^2.4.0"
langchain = "^0.3.7"
langchain-community = "^0.3.7"
langchain-text-splitters = "^0.3.2"
sentence-transformers = "^3.3.1"
langchain-huggingface = "^0.1.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"