mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-03-02 08:09:43 +08:00
76 lines
2.0 KiB
Plaintext
76 lines
2.0 KiB
Plaintext
---
|
|
title: Web Console
|
|
description: Use CowAgent through the web console
|
|
---
|
|
|
|
The Web Console is CowAgent's default channel. It starts automatically after launch, allowing you to chat with the Agent through a browser and manage models, skills, memory, channels, and other configurations online.
|
|
|
|
## Configuration
|
|
|
|
```json
|
|
{
|
|
"channel_type": "web",
|
|
"web_port": 9899
|
|
}
|
|
```
|
|
|
|
| Parameter | Description | Default |
|
|
| --- | --- | --- |
|
|
| `channel_type` | Set to `web` | `web` |
|
|
| `web_port` | Web service listen port | `9899` |
|
|
|
|
## Access URL
|
|
|
|
After starting the project, visit:
|
|
|
|
- Local: `http://localhost:9899`
|
|
- Server: `http://<server-ip>:9899`
|
|
|
|
<Note>
|
|
Ensure the server firewall and security group allow the corresponding port.
|
|
</Note>
|
|
|
|
## Features
|
|
|
|
### Chat Interface
|
|
|
|
Supports streaming output with real-time display of the Agent's reasoning process and tool calls, providing intuitive observation of the Agent's decision-making:
|
|
|
|
<img width="850" src="https://cdn.link-ai.tech/doc/20260227180120.png" />
|
|
|
|
### Model Management
|
|
|
|
Manage model configurations online without manually editing config files:
|
|
|
|
<img width="850" src="https://cdn.link-ai.tech/doc/20260227173811.png" />
|
|
|
|
### Skill Management
|
|
|
|
View and manage Agent skills (Skills) online:
|
|
|
|
<img width="850" src="https://cdn.link-ai.tech/doc/20260227173403.png" />
|
|
|
|
### Memory Management
|
|
|
|
View and manage Agent memory online:
|
|
|
|
<img width="850" src="https://cdn.link-ai.tech/doc/20260227173349.png" />
|
|
|
|
### Channel Management
|
|
|
|
Manage connected channels online with real-time connect/disconnect operations:
|
|
|
|
<img width="850" src="https://cdn.link-ai.tech/doc/20260227173331.png" />
|
|
|
|
### Scheduled Tasks
|
|
|
|
View and manage scheduled tasks online, including one-time tasks, fixed intervals, and Cron expressions:
|
|
|
|
<img width="850" src="https://cdn.link-ai.tech/doc/20260227173704.png" />
|
|
|
|
### Logs
|
|
|
|
View Agent runtime logs in real-time for monitoring and troubleshooting:
|
|
|
|
<img width="850" src="https://cdn.link-ai.tech/doc/20260227173514.png" />
|