Skip to content

govtech-responsibleai/playbook

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Responsible AI Playbook

This is a playbook for Responsible AI in the Singapore Public Service, maintained by GovTech Singapore's AI Practice.

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.

For external collaborators, please create a separate branch and raise a PR to merge.