Tools for building and exploring clinical risk scorecards. The main entry point
is the Streamlit UI in UserInterface/credit_score_app.py.
python3 -m venv venv
source venv/bin/activateFrom the repository root (CreditScorecardBuilder):
python3 -m pip install -U pip
python3 -m pip install -r requirements.txtrequirements.txt installs the local llm_utils package via ./llm_utils.
The app looks for data in /data (Docker) or via a devcontainer mount. If
running locally, set a path explicitly before launch by editing
config/config.py and setting Config._USER_DATA_DIR to a valid directory.
streamlit run UserInterface/credit_score_app.pymkdocs serve