feat(llm): add token usage tracking and statistics for LLM providers and resolve the conflicts and modify files in src/llm/providers/archived to be consistent with the current main branch. #141
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: check-pr-title | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, edited] | |
| jobs: | |
| check-pr-title: | |
| name: Check PR Title | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: check PR with regex | |
| run: uv run .github/scripts/check_pr_title.py "${TITLE}" | |
| env: | |
| TITLE: ${{ github.event.pull_request.title }} |