Skip to content

Latest commit

 

History

History
40 lines (25 loc) · 697 Bytes

README.md

File metadata and controls

40 lines (25 loc) · 697 Bytes

Responsible AI Playbook

This is a playbook for Responsible AI in the Singapore Public Service.

This is under active development.

Set-up

  1. Create a new virtual environment:

    python -m venv .venv
  2. Install the dependencies:

    pip install -r requirements.txt
  3. Run the development server:

    cd playbook
    mkdocs serve

Adding new content

  1. Add a new markdown file in the playbook/src directory.

  2. Then add a link to it in the mkdocs.yml file.

  3. Build the site by running this command at the root directory:

mkdocs build --config-file playbook/mkdocs.yml
  1. Commit and push your changes.