File size: 644 Bytes
c0aa211 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
[tool.poetry]
name = "icdbot"
version = "0.1.0"
description = "An AI agent for intelligent querying of the ICD10CM vocabulary."
authors = ["Shawn T O'Neil <[email protected]>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
kani-utils = {git = "https://github.com/oneilsh/kani-utils.git"}
pandas = "^2.2.3"
kani = "^1.2.2"
transformers = "^4.48.0"
sentence-transformers = "^3.3.1"
peft = "^0.14.0"
faiss-cpu = "^1.9.0.post1"
numpy = "^2.2.2"
pyyaml = "^6.0.2"
streamlit = "^1.41.1"
requests = "^2.32.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|