CoolFace
Apppublic

build-small-hackathon/legislation-explainer

sourceHugging Faceupdated 3mo agoView on Hugging Face
2likes
pyproject.toml27 linesDownload Raw Back to root
1[project]2name = "legislation-explainer"3version = "0.1.0"4description = "A Gradio tool for reviewing public-interest legislation and policy documents with small models."5readme = "README.md"6requires-python = ">=3.12, <3.13"7dependencies = [8    "gradio==6.17.3",9    "langchain==0.1.17",10    "langchain-community==0.0.36",11    "faiss-cpu==1.8.0",12    "sentence-transformers==2.7.0",13    "pydantic>=2.7.0",14    "requests==2.31.0",15    "readability-lxml==0.8.1",16    "lxml_html_clean>=0.4.3",17    "python-docx==1.1.0",18    "pypdf==4.2.0",19    "anthropic==0.23.1",20    "openai==1.25.0",21    "httpx==0.27.2",22    "google-generativeai==0.7.2",23    "python-dotenv==1.0.1",24    "cohere==5.5.5",25    "pytest>=9.0.3",26]27