Skip to content

Add reasoning/thinking tokens support to traces #2204

Add reasoning/thinking tokens support to traces

Add reasoning/thinking tokens support to traces #2204

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
run-linter:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v5
- name: Install the latest version of uv and set the python version to 3.13
uses: astral-sh/setup-uv@v6
with:
python-version: 3.13
activate-environment: true
- name: Install pre-commit
run: uv sync --group lint
- uses: actions/cache@v4
with:
path: .mypy_cache
key: ${{ runner.os }}-mypy-${{ hashFiles('pyproject.toml') }}
restore-keys: |
${{ runner.os }}-mypy-
- uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: ${{ runner.os }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
restore-keys: |
${{ runner.os }}-pre-commit-
- name: pre-commit
run: uv run pre-commit run --all-files --verbose