chore: change default gateway port to 18790 to avoid conflict with OpenClaw

This commit is contained in:
Neutral Milk 2026-02-02 13:35:44 +08:00
parent 959c4dadf8
commit c400786b17
2 changed files with 2 additions and 2 deletions

View File

@ -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."""

View File

@ -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):