From c400786b17bbab67d2d4a01fede13191d274699e Mon Sep 17 00:00:00 2001 From: Neutral Milk Date: Mon, 2 Feb 2026 13:35:44 +0800 Subject: [PATCH] chore: change default gateway port to 18790 to avoid conflict with OpenClaw --- nanobot/cli/commands.py | 2 +- nanobot/config/schema.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nanobot/cli/commands.py b/nanobot/cli/commands.py index 05513f0..f8d3b98 100644 --- a/nanobot/cli/commands.py +++ b/nanobot/cli/commands.py @@ -154,7 +154,7 @@ This file stores important information that should persist across sessions. @app.command() def gateway( - port: int = typer.Option(18789, "--port", "-p", help="Gateway port"), + port: int = typer.Option(18790, "--port", "-p", help="Gateway port"), verbose: bool = typer.Option(False, "--verbose", "-v", help="Verbose output"), ): """Start the nanobot gateway.""" diff --git a/nanobot/config/schema.py b/nanobot/config/schema.py index 06c36e6..2931fd5 100644 --- a/nanobot/config/schema.py +++ b/nanobot/config/schema.py @@ -55,7 +55,7 @@ class ProvidersConfig(BaseModel): class GatewayConfig(BaseModel): """Gateway/server configuration.""" host: str = "0.0.0.0" - port: int = 18789 + port: int = 18790 class WebSearchConfig(BaseModel):