From 9a5f83adb496ada6c56c8b8743334e8f73b0936b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Boschi?= Date: Fri, 20 Mar 2026 13:45:46 +0100 Subject: [PATCH] fix: release integrations --- hindsight-dev/hindsight_dev/generate_changelog.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hindsight-dev/hindsight_dev/generate_changelog.py b/hindsight-dev/hindsight_dev/generate_changelog.py index d10469a2..5eb729f5 100644 --- a/hindsight-dev/hindsight_dev/generate_changelog.py +++ b/hindsight-dev/hindsight_dev/generate_changelog.py @@ -28,7 +28,7 @@ REPO_PATH = Path(__file__).parent.parent.parent CHANGELOG_PATH = REPO_PATH / "hindsight-docs" / "src" / "pages" / "changelog" / "index.md" INTEGRATION_CHANGELOG_DIR = REPO_PATH / "hindsight-docs" / "src" / "pages" / "changelog" / "integrations" -VALID_INTEGRATIONS = ["litellm", "pydantic-ai", "crewai", "ai-sdk", "chat", "openclaw"] +VALID_INTEGRATIONS = ["litellm", "pydantic-ai", "crewai", "ai-sdk", "chat", "openclaw", "langgraph"] class ChangelogEntry(BaseModel): @@ -504,6 +504,7 @@ def _get_package_name(integration: str) -> str: "ai-sdk": "@vectorize-io/hindsight-ai-sdk", "chat": "@vectorize-io/hindsight-chat", "openclaw": "@vectorize-io/hindsight-openclaw", + "langgraph": "hindsight-langgraph", } return packages[integration] @@ -522,6 +523,7 @@ def _integration_display_name(integration: str) -> str: "ai-sdk": "AI SDK", "chat": "Chat SDK", "openclaw": "OpenClaw", + "langgraph": "LangGraph", } return names.get(integration, integration)