chore: add llamaindex and codex to changelog generator

This commit is contained in:
Nicolò Boschi 2026-03-30 14:36:47 +02:00
parent b739b9e36a
commit b8fa0e8cfc

View file

@ -40,6 +40,8 @@ VALID_INTEGRATIONS = [
"nemoclaw", "nemoclaw",
"strands", "strands",
"claude-code", "claude-code",
"llamaindex",
"codex",
] ]
@ -521,6 +523,8 @@ def _get_package_name(integration: str) -> str:
"nemoclaw": "@vectorize-io/hindsight-nemoclaw", "nemoclaw": "@vectorize-io/hindsight-nemoclaw",
"strands": "hindsight-strands", "strands": "hindsight-strands",
"claude-code": "hindsight-memory", "claude-code": "hindsight-memory",
"llamaindex": "hindsight-llamaindex",
"codex": "hindsight-codex",
} }
return packages[integration] return packages[integration]
@ -545,6 +549,8 @@ def _integration_display_name(integration: str) -> str:
"nemoclaw": "NemoClaw", "nemoclaw": "NemoClaw",
"strands": "Strands", "strands": "Strands",
"claude-code": "Claude Code", "claude-code": "Claude Code",
"llamaindex": "LlamaIndex",
"codex": "Codex",
} }
return names.get(integration, integration) return names.get(integration, integration)