-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (55 loc) · 1.37 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (55 loc) · 1.37 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[project]
name = "healthflow"
version = "0.1.0"
description = "Self-Evolving LLM Agent for Healthcare with Experience Accumulation and Tool Creation"
readme = "README.md"
requires-python = ">=3.12"
keywords = ["healthcare", "ai", "llm", "agents", "self-evolving", "medical", "agentic"]
dependencies = [
"aiofiles>=24.1.0",
"catboost==1.2.10",
"httpx>=0.28.1",
"joblib==1.5.3",
"loguru>=0.7.3",
"matplotlib>=3.10.1",
"numpy>=2.2.4",
"oneehr",
"openai>=1.97.1",
"openpyxl>=3.1.5",
"pandas>=2.3.0",
"pyarrow>=19.0.1",
"pydantic>=2.11.7",
"prompt_toolkit>=3.0.51",
"rich>=14.1.0",
"scikit-learn>=1.6.1",
"seaborn==0.13.2",
"shap==0.45.1",
"tenacity>=9.1.2",
"toml>=0.10.2",
"torch==2.11.0",
"tooluniverse==1.1.11",
"tqdm==4.67.3",
"typer>=0.16.0",
"xgboost==3.2.0",
"scipy>=1.17.1",
"statsmodels>=0.14.6",
"lifelines>=0.30.3",
"transformers>=5.4.0",
]
[project.scripts]
healthflow = "run_healthflow:app"
[project.optional-dependencies]
web = [
"gradio>=5.0,<6.0",
]
[dependency-groups]
dev = [
"pytest>=8.3.5",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["healthflow"]
[tool.uv.sources]
oneehr = { git = "https://github.com/MedX-PKU/OneEHR.git", rev = "28ae5b2561a3f9646c5ed807c3a455be9599577a" }