CoolFace
Apppublic

UZMAilyas/CSReview

sourceHugging Facemitupdated 17d agoView on Hugging Face
1likes
pyproject.toml22 linesDownload Raw Back to root
1[project]2name = "medphy-nexus"3version = "0.1.0"4description = "Add your description here"5readme = "README.md"6requires-python = ">=3.11"7dependencies = [8    "gradio>=6.26.0",9    "langchain>=1.3.18",10    "langchain-google-genai>=4.4.0",11    "langchain-ollama>=1.1.0",12    "matplotlib>=3.11.1",13    "python-dotenv>=1.2.3",14]15 16[project.scripts]17medphy-nexus = "medphy_nexus:main"18 19[build-system]20requires = ["uv_build>=0.12.9,<0.13.0"]21build-backend = "uv_build"22