Skip to content

Fix system message rounds logic and show agent names in whisper #604

Fix system message rounds logic and show agent names in whisper

Fix system message rounds logic and show agent names in whisper #604

Workflow file for this run

name: Linting
on:
# triggered when pushed to a open PR
# https://github.community/t/trigger-on-push-events-to-pull-requests/145068
pull_request:
types: [opened, synchronize]
jobs:
# re-run linting whenever there's a new push
lint:
name: code style
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
- uses: actions/setup-python@v3
with:
python-version: 3.9
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Run linter
run: |
make lint