chore: add hermes to release and changelog valid lists
This commit is contained in:
parent
6a28373ecf
commit
73460fa4e6
2 changed files with 4 additions and 1 deletions
|
|
@ -42,6 +42,7 @@ VALID_INTEGRATIONS = [
|
||||||
"claude-code",
|
"claude-code",
|
||||||
"llamaindex",
|
"llamaindex",
|
||||||
"codex",
|
"codex",
|
||||||
|
"hermes",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -525,6 +526,7 @@ def _get_package_name(integration: str) -> str:
|
||||||
"claude-code": "hindsight-memory",
|
"claude-code": "hindsight-memory",
|
||||||
"llamaindex": "hindsight-llamaindex",
|
"llamaindex": "hindsight-llamaindex",
|
||||||
"codex": "hindsight-codex",
|
"codex": "hindsight-codex",
|
||||||
|
"hermes": "hindsight-hermes",
|
||||||
}
|
}
|
||||||
return packages[integration]
|
return packages[integration]
|
||||||
|
|
||||||
|
|
@ -551,6 +553,7 @@ def _integration_display_name(integration: str) -> str:
|
||||||
"claude-code": "Claude Code",
|
"claude-code": "Claude Code",
|
||||||
"llamaindex": "LlamaIndex",
|
"llamaindex": "LlamaIndex",
|
||||||
"codex": "Codex",
|
"codex": "Codex",
|
||||||
|
"hermes": "Hermes",
|
||||||
}
|
}
|
||||||
return names.get(integration, integration)
|
return names.get(integration, integration)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ print_info() { echo -e "${GREEN}[INFO]${NC} $1"; }
|
||||||
print_warn() { echo -e "${YELLOW}[WARN]${NC} $1"; }
|
print_warn() { echo -e "${YELLOW}[WARN]${NC} $1"; }
|
||||||
print_error() { echo -e "${RED}[ERROR]${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() {
|
usage() {
|
||||||
print_error "Usage: $0 <integration> <version>"
|
print_error "Usage: $0 <integration> <version>"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue