minionsai 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -12,7 +12,12 @@ let shuttingDown = false;
|
|
|
12
12
|
async function main() {
|
|
13
13
|
ensureBundledSkillsLinked();
|
|
14
14
|
closeFrontend = await mountFrontend(app, httpServer);
|
|
15
|
-
|
|
15
|
+
try {
|
|
16
|
+
await adapter.start();
|
|
17
|
+
}
|
|
18
|
+
catch (error) {
|
|
19
|
+
console.error('Hermes worker failed to start — UI will load but agent features are unavailable until the worker recovers:', error instanceof Error ? error.message : error);
|
|
20
|
+
}
|
|
16
21
|
httpServer.listen(PORT);
|
|
17
22
|
await once(httpServer, 'listening');
|
|
18
23
|
console.log(`Hermes Agent Mission Control running on http://localhost:${PORT}`);
|
|
@@ -957,11 +957,7 @@ def _sync_session_identity(agent: Any, session_id: str) -> None:
|
|
|
957
957
|
|
|
958
958
|
|
|
959
959
|
def _warm_agent() -> None:
|
|
960
|
-
|
|
961
|
-
session_id="minions-healthcheck",
|
|
962
|
-
requested_model=None,
|
|
963
|
-
reasoning_effort=None,
|
|
964
|
-
)
|
|
960
|
+
_load_config()
|
|
965
961
|
|
|
966
962
|
|
|
967
963
|
def _run_chat(request_id: str, request: dict[str, Any]) -> None:
|