From e28b8b192a84e0cb3fb30a21c52513fbabb7375e Mon Sep 17 00:00:00 2001 From: Chmouel Boudjnah Date: Thu, 17 Sep 2026 14:29:12 +0200 Subject: [PATCH] enhancement: Enable high reasoning effort for paco Configured the automated code review pipeline with high reasoning effort so the review model could perform deeper analysis on code changes. Signed-off-by: Chmouel Boudjnah --- .tekton/paco.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.tekton/paco.yaml b/.tekton/paco.yaml index a7c2976804..9f208839b2 100644 --- a/.tekton/paco.yaml +++ b/.tekton/paco.yaml @@ -29,6 +29,8 @@ spec: value: "{{git_auth_secret}}" - name: model value: "google-vertex-anthropic/claude-sonnet-4-6@default" + - name: reasoning_effort + value: "high" - name: vertex_credentials_secret value: "paco-vertex-credentials" - name: vertex_credentials_key @@ -48,6 +50,8 @@ spec: - name: git_auth_secret - name: model default: "google-vertex-anthropic/claude-sonnet-4-6@default" + - name: reasoning_effort + default: "high" - name: vertex_credentials_secret default: "paco-vertex-credentials" - name: vertex_credentials_key @@ -103,7 +107,8 @@ spec: mkdir -p "${HOME}" paco review \ --workspace "$(workspaces.source.path)" \ - --model "$(params.model)" + --model "$(params.model)" \ + --reasoning-effort "$(params.reasoning_effort)" - name: post-review displayName: "Post review to the pull request"