ForcePilot/backend/package/yuxi/channel/extensions/tencent_im/plugin.json
Kris 331daa1216 feat(channel): 添加腾讯 IM 渠道扩展
新增腾讯 IM(Tencent IM)渠道扩展,支持在 Yuxi 平台中集成腾讯即时通讯 IM 渠道。

包含以下功能模块:
- config: 渠道配置管理
- gateway: SSE/WebSocket 网关接入
- webhook: Webhook 事件处理
- outbound: 外发消息管理
- pairing: 用户配对与绑定
- security: 安全校验
- signature: 请求签名验证
- usersig: UserSig 生成
- dedupe: 消息去重
- status: 会话状态管理
- group: 群组管理
- types: 类型定义
2026-05-21 11:49:29 +08:00

37 lines
1.3 KiB
JSON

{
"id": "tencent-im",
"name": "腾讯云IM",
"version": "0.1.0",
"label": "腾讯云 IM (TencentIM)",
"aliases": ["tim", "tencent-im", "腾讯云IM", "腾讯云即时通信", "TencentIM"],
"description": "腾讯云即时通信 IM 渠道插件,支持单聊/群聊 Webhook 回调 + REST API 发送模式的消息收发",
"author": "ForcePilot Team",
"order": 70,
"dependencies": ["httpx"],
"capabilities": {
"chat_types": ["direct", "group"],
"message_types": ["text", "image", "voice", "video", "file", "custom"],
"reactions": false,
"typing_indicator": false,
"threads": false,
"edit": false,
"unsend": true,
"reply": true,
"media": true,
"effects": false,
"native_commands": false,
"polls": false,
"group_management": false,
"streaming": true,
"streaming_mode": "block",
"block_streaming": true,
"block_streaming_chunk_min_chars": 300,
"block_streaming_chunk_max_chars": 900,
"block_streaming_chunk_break_preference": "paragraph",
"block_streaming_coalesce_min_chars": 80,
"block_streaming_coalesce_max_chars": 400,
"block_streaming_coalesce_idle_ms": 500
},
"enabled": true,
"python_requires": ">=3.12"
}