664397d713
feature/proc desc * Update crosswalks - individual code level * add embeddings * Update embeddings * Proc mappings * code description mapping for PROC codes * Code map bug fixes * docstrings * Initialize Rev and Diag descriptions * Add 0 to front for rev codes * Comments * Merged main into feature/proc-desc * Comments * Separate grouper and diag codes * add grouper version * Bugfix" * Add admit type code * add proc mod description * Add bill type pos mapping * Merged main into feature/proc-desc * Uncomment test code * Bugfix * Remove test.py * list bugfix * Merged main into feature/proc-desc * concurrency Approved-by: Alex Galarce
59 lines
1.2 KiB
TOML
59 lines
1.2 KiB
TOML
[tool.poetry]
|
|
name = "doczy-smart-chunking"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Alex Galarce <agalarce@aarete.com>"]
|
|
readme = "README.md"
|
|
package-mode = false
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
pandas = "^2.2.3"
|
|
boto3 = "^1.35.40"
|
|
anthropic = "^0.36.0"
|
|
python-dotenv = "^1.0.1"
|
|
psutil = "^6.1.0"
|
|
rapidfuzz = "^3.10.1"
|
|
pyxlsb = "^1.0.10"
|
|
openpyxl = "^3.1.5"
|
|
pytest-mock = "^3.14.0"
|
|
langchain = "^0.3.14"
|
|
langchainhub = "^0.1.21"
|
|
langchain-chroma = "^0.2.0"
|
|
langchain-aws = "^0.2.11"
|
|
langchain-text-splitters = "^0.3.5"
|
|
langchain-community = "^0.3.15"
|
|
nltk = "^3.9.1"
|
|
rank-bm25 = "^0.2.2"
|
|
sentence-transformers = "^3.4.1"
|
|
faiss-cpu = "^1.10.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^24.10.0"
|
|
mypy = "^1.12.0"
|
|
jupyter = "^1.1.1"
|
|
isort = "^5.13.2"
|
|
|
|
[tool.poetry.group.test.dependencies]
|
|
pytest = "^8.3.3"
|
|
pytest-mock = "^3.14.0"
|
|
pytest-cov = "^6.0.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.black]
|
|
line-length = 88
|
|
target-version = ['py312']
|
|
|
|
[tool.mypy]
|
|
disable_error_code = ["import-untyped","assignment","name-defined","call-arg","var-annotated","attr-defined","arg-type"]
|
|
exclude = ["scripts/"]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath=["."]
|
|
testpaths = [
|
|
"tests"
|
|
]
|