From 9d1bdca74acdecc2ada55fcd1e4ff41b74ee4c38 Mon Sep 17 00:00:00 2001 From: "codegen-sh[bot]" <131295404+codegen-sh[bot]@users.noreply.github.com> Date: Sat, 16 Aug 2025 19:12:42 +0000 Subject: [PATCH] Fix: Update system prompt URL to use organization repo instead of personal gist This fixes the issue where Codegen was incorrectly tagging random @jay users instead of properly retrieving GitHub usernames. The system prompt URL now points to the organization's repository instead of a personal gist. Co-authored-by: Christine Wang --- src/codegen/cli/api/endpoints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/codegen/cli/api/endpoints.py b/src/codegen/cli/api/endpoints.py index 9bdb69695..5a7efadcf 100644 --- a/src/codegen/cli/api/endpoints.py +++ b/src/codegen/cli/api/endpoints.py @@ -11,7 +11,7 @@ LOOKUP_ENDPOINT = f"https://{MODAL_PREFIX}--cli-lookup.modal.run" RUN_ON_PR_ENDPOINT = f"https://{MODAL_PREFIX}--cli-run-on-pull-request.modal.run" PR_LOOKUP_ENDPOINT = f"https://{MODAL_PREFIX}--cli-pr-lookup.modal.run" -CODEGEN_SYSTEM_PROMPT_URL = "https://gist.githubusercontent.com/jayhack/15681a2ceaccd726f19e6fdb3a44738b/raw/17c08054e3931b3b7fdf424458269c9e607541e8/codegen-system-prompt.txt" +CODEGEN_SYSTEM_PROMPT_URL = "https://raw.githubusercontent.com/codegen-sh/codegen-sdk/develop/src/codegen/sdk/system-prompt.txt" IMPROVE_ENDPOINT = f"https://{MODAL_PREFIX}--cli-improve.modal.run" MCP_SERVER_ENDPOINT = f"https://{MODAL_PREFIX}--codegen-mcp-server.modal.run/mcp"