feat: LLM classifier 프롬프트 최적화 — few-shot 예제로 정확도 50%→86% #15
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| run: uv python install ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: uv sync --extra dev --extra sqlite | |
| - name: Ruff check | |
| run: uv run ruff check | |
| - name: Ruff format | |
| run: uv run ruff format --check | |
| - name: Pyright | |
| run: uv run pyright | |
| - name: Tests | |
| run: uv run pytest -v |