From 4d117cc27469e1fc81db02fdcf3a926b4db40929 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Boschi?= Date: Wed, 1 Apr 2026 17:51:05 +0200 Subject: [PATCH] chore: add autogen to changelog valid integrations list --- hindsight-dev/hindsight_dev/generate_changelog.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hindsight-dev/hindsight_dev/generate_changelog.py b/hindsight-dev/hindsight_dev/generate_changelog.py index a6442d22..8133f0ff 100644 --- a/hindsight-dev/hindsight_dev/generate_changelog.py +++ b/hindsight-dev/hindsight_dev/generate_changelog.py @@ -43,6 +43,7 @@ VALID_INTEGRATIONS = [ "llamaindex", "codex", "hermes", + "autogen", ] @@ -527,6 +528,7 @@ def _get_package_name(integration: str) -> str: "llamaindex": "hindsight-llamaindex", "codex": "hindsight-codex", "hermes": "hindsight-hermes", + "autogen": "hindsight-autogen", } return packages[integration] @@ -554,6 +556,7 @@ def _integration_display_name(integration: str) -> str: "llamaindex": "LlamaIndex", "codex": "Codex", "hermes": "Hermes", + "autogen": "AutoGen", } return names.get(integration, integration)