chore: add llamaindex and codex to changelog generator
This commit is contained in:
parent
b739b9e36a
commit
b8fa0e8cfc
1 changed files with 6 additions and 0 deletions
|
|
@ -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)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue