From c0c2dd0723898dde3a203a2318c3668b3de63ba3 Mon Sep 17 00:00:00 2001 From: Shay Palachy Date: Fri, 29 May 2026 12:31:23 +0300 Subject: [PATCH] fix(publish): publish HF dataset under shaypal5 personal account The leadforge org does not exist on HuggingFace; publish under shaypal5 instead. Repo IDs become: shaypal5/leadforge-lead-scoring-v1 shaypal5/leadforge-lead-scoring-v1-instructor Co-Authored-By: Claude Sonnet 4.6 --- scripts/publish_hf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/publish_hf.py b/scripts/publish_hf.py index 04fb3a1..84c6983 100644 --- a/scripts/publish_hf.py +++ b/scripts/publish_hf.py @@ -128,7 +128,7 @@ def _resolve_token(cli_token: str | None) -> str | None: # Repo identity # --------------------------------------------------------------------------- -HF_ORG: Final[str] = "leadforge" +HF_ORG: Final[str] = "shaypal5" REPO_IDS: Final[dict[str, str]] = { "public": f"{HF_ORG}/leadforge-lead-scoring-v1", "instructor": f"{HF_ORG}/leadforge-lead-scoring-v1-instructor",