From 866942eedd02a3fc85ae4e0393c450a2394b8922 Mon Sep 17 00:00:00 2001 From: tjb-tech Date: Mon, 9 Feb 2026 09:12:53 +0000 Subject: [PATCH] fix: update agentUserId in README and change base_url to HTTPS in configuration --- README.md | 2 +- nanobot/config/schema.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d15fd2f..7bf98fd 100644 --- a/README.md +++ b/README.md @@ -231,7 +231,7 @@ Uses **Socket.IO WebSocket** by default, with HTTP polling fallback. "socketUrl": "https://mochat.io", "socketPath": "/socket.io", "clawToken": "claw_xxx", - "agentUserId": "69820107a785110aea8b1069", + "agentUserId": "6982abcdef", "sessions": ["*"], "panels": ["*"], "replyDelayMode": "non-mention", diff --git a/nanobot/config/schema.py b/nanobot/config/schema.py index a3d8aa5..26abcd7 100644 --- a/nanobot/config/schema.py +++ b/nanobot/config/schema.py @@ -90,7 +90,7 @@ class MochatGroupRule(BaseModel): class MochatConfig(BaseModel): """Mochat channel configuration.""" enabled: bool = False - base_url: str = "http://localhost:11000" + base_url: str = "https://mochat.io" socket_url: str = "" socket_path: str = "/socket.io" socket_disable_msgpack: bool = False