Skip to content

feat(provider): 在重试警告日志中包含提供商 ID 和模型名称 | include provider id and model name in retry warning logs #9044

feat(provider): 在重试警告日志中包含提供商 ID 和模型名称 | include provider id and model name in retry warning logs

feat(provider): 在重试警告日志中包含提供商 ID 和模型名称 | include provider id and model name in retry warning logs #9044

Workflow file for this run

name: Code Format Check
on:
pull_request:
branches: [ master ]
push:
branches: [ master ]
jobs:
format-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v7
with:
python-version: '3.12'
- name: Install UV
run: pip install uv
- name: Install dependencies
run: uv sync
- name: Check code formatting with ruff
run: |
uvx --from ruff==0.15.22 ruff format --check .
- name: Check code style with ruff
run: |
uvx --from ruff==0.15.22 ruff check .