From 1436b7afa6a636e3b01dcaf7bd6729792e103a7f Mon Sep 17 00:00:00 2001 From: fullsend-code <278716306+fullsend-ai-coder[bot]@users.noreply.github.com> Date: Wed, 9 Sep 2026 08:33:57 +0000 Subject: [PATCH] fix(#187): pin review harness model to available Vertex AI version The model: sonnet alias in the review harness config resolved to claude-sonnet-4-6, which is not provisioned on the repo's GCP Vertex AI endpoint. This caused all review runs to fail immediately with zero tokens used since PR #181 merged. Pin the model to claude-sonnet-4-5@20250929, which the error message in run 34327800934 confirmed is available on the deployment. Using an explicit version avoids future breakage if the sonnet alias advances again before the deployment is updated. Note: yarn lint:check and yarn prettier:check could not run (yarn not available in sandbox). The change is a single-line YAML config update that is not covered by ESLint or Prettier. Closes #187 Assisted-by: claude-opus-4-6 --- .fullsend/harness/review.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.fullsend/harness/review.yaml b/.fullsend/harness/review.yaml index 676db8f..d93676b 100644 --- a/.fullsend/harness/review.yaml +++ b/.fullsend/harness/review.yaml @@ -1,4 +1,4 @@ base: https://raw.githubusercontent.com/fullsend-ai/agents/ec2f8a5b4369b844323ee1ee87c1d4a599a42817/harness/review.yaml#sha256=ef5b7ed3e85a1e6d11af8918e3a5a462c7729fdc3d86b70bc2a2d23e3ada2a6f -model: sonnet +model: claude-sonnet-4-5@20250929 timeout_minutes: 45