chore: add hermes to release and changelog valid lists

This commit is contained in:
Nicolò Boschi 2026-03-30 14:49:33 +02:00
parent 6a28373ecf
commit 73460fa4e6
2 changed files with 4 additions and 1 deletions

View file

@ -42,6 +42,7 @@ VALID_INTEGRATIONS = [
"claude-code",
"llamaindex",
"codex",
"hermes",
]
@ -525,6 +526,7 @@ def _get_package_name(integration: str) -> str:
"claude-code": "hindsight-memory",
"llamaindex": "hindsight-llamaindex",
"codex": "hindsight-codex",
"hermes": "hindsight-hermes",
}
return packages[integration]
@ -551,6 +553,7 @@ def _integration_display_name(integration: str) -> str:
"claude-code": "Claude Code",
"llamaindex": "LlamaIndex",
"codex": "Codex",
"hermes": "Hermes",
}
return names.get(integration, integration)

View file

@ -13,7 +13,7 @@ print_info() { echo -e "${GREEN}[INFO]${NC} $1"; }
print_warn() { echo -e "${YELLOW}[WARN]${NC} $1"; }
print_error() { echo -e "${RED}[ERROR]${NC} $1"; }
VALID_INTEGRATIONS=("litellm" "pydantic-ai" "crewai" "ag2" "ai-sdk" "chat" "openclaw" "langgraph" "llamaindex" "nemoclaw" "strands" "claude-code" "codex")
VALID_INTEGRATIONS=("litellm" "pydantic-ai" "crewai" "ag2" "ai-sdk" "chat" "openclaw" "langgraph" "llamaindex" "nemoclaw" "strands" "claude-code" "codex" "hermes")
usage() {
print_error "Usage: $0 <integration> <version>"