Skip to content

Fix issues with model flow between agents, add structured output modes and add follow up questions #317

Fix issues with model flow between agents, add structured output modes and add follow up questions

Fix issues with model flow between agents, add structured output modes and add follow up questions #317

Workflow file for this run

name: CI Checks
on:
push:
branches:
- main
pull_request:
branches:
- "*" # Run on all branches
env:
MIN_PYTHON_VERSION: 3.12
jobs:
job-pre-commit-check:
name: Pre-Commit Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ env.MIN_PYTHON_VERSION }}
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
- name: Install the project
run: uv sync --only-dev
- name: Run pre-commit
run: uv run pre-commit run --all-files