You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix LLM routing bug and container permission errors
The default model `anthropic/claude-sonnet-4.6` was being routed to
OpenRouter (due to the `/` in the name) instead of the Anthropic API,
causing all review requests to fail with "Failed to send request to
OpenAI". Fix by:
1. Changing default model to `claude-sonnet-4-6` (no vendor prefix)
2. Adding `anthropic/` vendor prefix routing to AnthropicAdapter
(other vendor prefixes still route to OpenRouter)
Also fix container permission denied errors by adding a non-root user
(UID 1000) to the Dockerfile with pre-created data directories,
matching the k8s securityContext that enforces runAsUser: 1000.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
0 commit comments