From b8fa0e8cfc9b47c3d6baeb5125a07067f4e2fdbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Boschi?= Date: Mon, 30 Mar 2026 14:36:47 +0200 Subject: [PATCH] chore: add llamaindex and codex to changelog generator --- hindsight-dev/hindsight_dev/generate_changelog.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hindsight-dev/hindsight_dev/generate_changelog.py b/hindsight-dev/hindsight_dev/generate_changelog.py index 42030e3a..478fa725 100644 --- a/hindsight-dev/hindsight_dev/generate_changelog.py +++ b/hindsight-dev/hindsight_dev/generate_changelog.py @@ -40,6 +40,8 @@ VALID_INTEGRATIONS = [ "nemoclaw", "strands", "claude-code", + "llamaindex", + "codex", ] @@ -521,6 +523,8 @@ def _get_package_name(integration: str) -> str: "nemoclaw": "@vectorize-io/hindsight-nemoclaw", "strands": "hindsight-strands", "claude-code": "hindsight-memory", + "llamaindex": "hindsight-llamaindex", + "codex": "hindsight-codex", } return packages[integration] @@ -545,6 +549,8 @@ def _integration_display_name(integration: str) -> str: "nemoclaw": "NemoClaw", "strands": "Strands", "claude-code": "Claude Code", + "llamaindex": "LlamaIndex", + "codex": "Codex", } return names.get(integration, integration)