From 93f363d4d3cd896dfcd893370bf796bf721f5164 Mon Sep 17 00:00:00 2001 From: Peter van Eijk Date: Sun, 15 Mar 2026 21:52:50 +0700 Subject: [PATCH] qol: add version id to logging --- nanobot/cli/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nanobot/cli/commands.py b/nanobot/cli/commands.py index c2ff3ed..659dd94 100644 --- a/nanobot/cli/commands.py +++ b/nanobot/cli/commands.py @@ -461,7 +461,7 @@ def gateway( _print_deprecated_memory_window_notice(config) port = port if port is not None else config.gateway.port - console.print(f"{__logo__} Starting nanobot gateway on port {port}...") + console.print(f"{__logo__} Starting nanobot gateway version {__version__} on port {port}...") sync_workspace_templates(config.workspace_path) bus = MessageBus() provider = _make_provider(config)