Tune the argument model_id to model of bedrock same as other llms #120
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: Ruff | |
| on: | |
| push: | |
| branches: [ main, master ] | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Install the project | |
| run: | | |
| uv sync --all-extras --dev | |
| source .venv/bin/activate | |
| - name: Run Ruff | |
| run: | | |
| uv run ruff format --diff | |
| uv run ruff check | |
| # - name: Run tests | |
| # run: uv run pytest tests |