From 9cf6304e238f23ec3bb89441349cbcad29efe1ae Mon Sep 17 00:00:00 2001 From: root Date: Sat, 4 Jul 2026 23:33:34 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20remove=20hardcoded=20LiteLLM=20defaults?= =?UTF-8?q?=20=E2=80=94=20rely=20on=20Gitea=20secrets?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/prose-ai-review.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/prose-ai-review.sh b/scripts/prose-ai-review.sh index e534697..bda62ea 100755 --- a/scripts/prose-ai-review.sh +++ b/scripts/prose-ai-review.sh @@ -4,8 +4,8 @@ # Posts review comments via Gitea API. set -euo pipefail -LITELLM_URL="${LITELLM_URL:-https://litellm.sysloggh.net}" -LITELLM_KEY="${LITELLM_KEY:-sk-litellm-7f96080dd99b15c36bd4b333b58a6796}" +LITELLM_URL="${LITELLM_URL:-}" +LITELLM_KEY="${LITELLM_KEY:-}" GITEA_TOKEN="${GITEA_TOKEN:-$(grep GITEA_TOKEN /root/.pi/agent/extensions/telegram/.env 2>/dev/null | cut -d= -f2 || echo '')}" GITEA_API="https://git.sysloggh.net/api/v1"