Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/agent-pr-review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}

- name: Run reviewer
uses: misospace/pr-reviewer-action@1cb6bed7a29f0d528ff5ba56bcf57092bf096af1 # v2.1.9
uses: misospace/pr-reviewer-action@6f4fb724b222f6d9a83096d6b41cd636ef3a044e # v2.1.10
Comment thread
coderabbitai[bot] marked this conversation as resolved.
with:
github_token: ${{ github.token }}
ai_base_url: http://litellm.ai.svc.cluster.local/v1
Expand All @@ -42,6 +42,14 @@ jobs:
# (see litellm routerSettings.fallbacks); falls back to qwen-3.6-fast
# automatically if the free provider fails or times out.
ai_model: omniroute
# v2.1.10 inherits ai_fallback_base_url from ai_base_url when unset, then
# requires ai_fallback_model whenever ai_fallback_base_url is set (even
# inherited) — fails fast with no model call otherwise. Point this at
# qwen-3.6-fast directly (same litellm endpoint) rather than duplicating
# ai_model: litellm's routerSettings.fallbacks already retries omniroute
# failures internally, so this only fires if that whole chain fails —
# a real second attempt via a distinct model, not a no-op retry.
ai_fallback_model: qwen-3.6-fast
# omniroute's proxied models don't share SGLang's sampling_defaults, so
# an empty temperature has no known-good fallback here — pin explicitly.
ai_temperature: "0.2"
Expand Down