Files
cellbot/configs/config.toml
lafay d16261e6bd feat: add rate limiting and improve event handling
- Introduced rate limiting configuration in config.toml with options for enabling, requests per second (RPS), and burst capacity.
- Enhanced event handling in the OneBot11 adapter to ignore messages sent by the bot itself.
- Updated the dispatcher to register rate limit middleware based on configuration settings.
- Refactored WebSocket message handling to support flexible JSON parsing and improved event type detection.
- Removed deprecated echo plugin and associated tests to streamline the codebase.
2026-01-05 01:00:38 +08:00

58 lines
1.0 KiB
TOML

# CellBot Configuration
[server]
host = "0.0.0.0"
port = 8080
[log]
level = "info"
output = "logs/cellbot.log"
max_size = 100 # MB
max_backups = 3
max_age = 7 # days
[protocol]
name = "milky"
version = "1.0"
[protocol.options]
# Protocol specific options can be added here
[engine.rate_limit]
enabled = true
rps = 100 # 每秒请求数
burst = 200 # 突发容量
# ============================================================================
# Bot 配置
# ============================================================================
# Milky Bot 示例
[[bots]]
id = "milky_bot_1"
protocol = "milky"
enabled = false
[bots.milky]
protocol_url = "http://localhost:3000"
access_token = "your_token_here"
event_mode = "sse"
timeout = 30
retry_count = 3
# OneBot11 Bot 示例
[[bots]]
id = "onebot11_bot_1"
protocol = "onebot11"
enabled = true
[bots.onebot11]
connection_type = "ws"
self_id = "123456789"
nickname = "TestBot"
ws_url = "ws://127.0.0.1:3001"
access_token = "hDeu66@_DDhgMf<9"
timeout = 30
heartbeat = 30
reconnect_interval = 5