From ba358d518b3acf8dde69a260f6cb7f88f8382872 Mon Sep 17 00:00:00 2001 From: JaviLib Date: Sun, 22 Feb 2026 06:47:17 +0100 Subject: [PATCH] docs: fix HTTP channel documentation - Change default address from 0.0.0.0:8080 to 127.0.0.1:8070 - Remove incorrect file upload feature mention The HTTP channel documentation now accurately reflects the actual default configuration and supported features. --- README.md | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/README.md b/README.md index 7bc7b1089..bc1e2a412 100644 --- a/README.md +++ b/README.md @@ -268,6 +268,7 @@ Talk to your picoclaw through Telegram, Discord, DingTalk, LINE, or WeCom | Channel | Setup | | ------------ | ---------------------------------- | +| **HTTP** | Automatic (enabled by default) | | **Telegram** | Easy (just a token) | | **Discord** | Easy (bot token + intents) | | **QQ** | Easy (AppID + AppSecret) | @@ -275,6 +276,44 @@ Talk to your picoclaw through Telegram, Discord, DingTalk, LINE, or WeCom | **LINE** | Medium (credentials + webhook URL) | | **WeCom** | Medium (CorpID + webhook setup) | +
+HTTP (Default) + +The HTTP channel is enabled by default and runs on `http://127.0.0.1:8070`. No configuration needed! + +**Access the web interface:** + +1. Start the gateway: +```bash +picoclaw gateway +``` + +2. Open your browser and navigate to `http://127.0.0.1:8070` + +**Configuration:** + +```json +{ + "channels": { + "http": { + "enabled": true, + "host": "127.0.0.1", + "port": 8070 + } + } +} +``` + +**Features:** + +- Real-time chat interface +- Markdown support with proper rendering +- Responsive design for mobile and desktop + +The HTTP channel is perfect for testing, local development, or running PicoClaw on a headless server with a web UI. + +
+
Telegram (Recommended)