mirror of
https://github.com/0xrsydn/nix-hermes-agent.git
synced 2026-09-21 05:54:18 +00:00
fix: add snowballstemmer dep and use --version for 0.20.6
Upstream 0.20.6 added snowballstemmer==3.1.1 (tool_search BM25 stemming) as a direct dependency; package.nix now lists it so pythonRuntimeDepsCheck passes. The same release removed the 'hermes version' subcommand; the package-contents check now uses 'hermes --version' which still prints 'Hermes Agent'. Files: package.nix (add snowballstemmer), checks.nix (--version).
This commit is contained in:
parent
68bdb02565
commit
d83ed2440d
2 changed files with 3 additions and 1 deletions
|
|
@ -12,7 +12,7 @@
|
||||||
echo "PASS: All binaries present"
|
echo "PASS: All binaries present"
|
||||||
|
|
||||||
echo "=== Checking version ==="
|
echo "=== Checking version ==="
|
||||||
${hermes-agent}/bin/hermes version 2>&1 | grep -q "Hermes Agent" || (echo "FAIL: version check"; exit 1)
|
${hermes-agent}/bin/hermes --version 2>&1 | grep -q "Hermes Agent" || (echo "FAIL: version check"; exit 1)
|
||||||
echo "PASS: Version check"
|
echo "PASS: Version check"
|
||||||
|
|
||||||
echo "=== Checking key Python modules ==="
|
echo "=== Checking key Python modules ==="
|
||||||
|
|
|
||||||
|
|
@ -223,6 +223,8 @@ pythonPackages.buildPythonApplication {
|
||||||
firecrawl-py
|
firecrawl-py
|
||||||
fal-client
|
fal-client
|
||||||
parallel-web
|
parallel-web
|
||||||
|
# tool_search BM25 stemming (upstream >=0.20.6, snowballstemmer==3.1.1)
|
||||||
|
snowballstemmer
|
||||||
# TTS
|
# TTS
|
||||||
edge-tts
|
edge-tts
|
||||||
faster-whisper
|
faster-whisper
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue