|
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "healthagent"
|
|
version = "0.1.0"
|
|
description = "AI Health Agent for the Recon Robot"
|
|
authors = [
|
|
{ name = "Henry Asiedu", email = "henry.asiedu@fortressaisolutions.com" },
|
|
{ name = "Amanda Ofori", email = "amanda.ofori@fortressaisolutions.com" }
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
maintainers = [
|
|
{ name = "Henry Asiedu", email = "henry.asiedu@fortressaisolutions.com" },
|
|
{ name = "Amanda Ofori", email = "amanda.ofori@fortressaisolutions.com" }
|
|
]
|
|
|
|
dependencies = [
|
|
"numpy",
|
|
"pandas",
|
|
"matplotlib",
|
|
"scikit-learn",
|
|
"seaborn",
|
|
"llama-index-core==0.13.3",
|
|
"llama-index",
|
|
"llama-index-llms-ollama",
|
|
"llama-index-embeddings-ollama",
|
|
"lime",
|
|
"pyyaml",
|
|
"joblib",
|
|
"fastapi",
|
|
"uvicorn",
|
|
"pydantic",
|
|
"llama-index-postprocessor-rankgpt-rerank>=0.2.0",
|
|
"llama-index-llms-mistralai==0.7.1",
|
|
"llama-index-embeddings-mistralai"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"streamlit"
|
|
]
|
|
|
|
[tool.setuptools]
|
|
|
|
packages = ["healthagent"]
|
|
|