diff --git a/nix/checks.nix b/nix/checks.nix index 984016a4f4..28eba3eb58 100644 --- a/nix/checks.nix +++ b/nix/checks.nix @@ -19,7 +19,7 @@ export HOME=$TMPDIR ${hermesVenv}/bin/python3 -c ' import json, sys -from hermes_cli.config import DEFAULT_CONFIG +from hermes_agent.cli.config import DEFAULT_CONFIG def leaf_paths(d, prefix=""): paths = [] @@ -269,7 +269,7 @@ json.dump(sorted(leaf_paths(DEFAULT_CONFIG)), sys.stdout, indent=2) ${configMergeScript} ${nixSettings} "$hermes_home/config.yaml" ${hermesVenv}/bin/python3 -c ' import json, sys -from hermes_cli.config import load_config +from hermes_agent.cli.config import load_config json.dump(load_config(), sys.stdout, default=str) ' }