新增 KakaoTalk 渠道扩展,支持在 Yuxi 平台中集成 KakaoTalk 即时通讯渠道。 包含以下功能模块: - bot: Bot 客户端封装 - config: 渠道配置管理 - gateway: SSE/WebSocket 网关接入 - webhook: Webhook 事件处理 - outbound: 外发消息管理 - streaming: 流式消息处理 - pairing: 用户配对与绑定 - security: 安全校验 - dedupe: 消息去重 - monitor: 渠道状态监控 - status: 会话状态管理 - card_builder: KakaoTalk 卡片消息构建 - quick_reply: 快捷回复处理 - types: 类型定义
34 lines
1.1 KiB
JSON
34 lines
1.1 KiB
JSON
{
|
|
"id": "kakaotalk",
|
|
"name": "KakaoTalk",
|
|
"version": "1.0.0",
|
|
"label": "KakaoTalk (OpenBuilder Skill API)",
|
|
"aliases": ["kakao", "카카오톡"],
|
|
"description": "KakaoTalk channel integration via Kakao i OpenBuilder Skill API. Supports direct chat, text, image, cards, carousels, and quick replies.",
|
|
"author": "ForcePilot Team",
|
|
"order": 62,
|
|
"dependencies": ["httpx"],
|
|
"capabilities": {
|
|
"chat_types": ["direct"],
|
|
"message_types": ["text", "image"],
|
|
"interactions": ["quick_reply", "carousel", "card", "commerce"],
|
|
"reactions": false,
|
|
"typing_indicator": false,
|
|
"threads": false,
|
|
"edit": false,
|
|
"unsend": false,
|
|
"reply": false,
|
|
"media": true,
|
|
"native_commands": true,
|
|
"polls": false,
|
|
"streaming": true,
|
|
"streaming_mode": "block",
|
|
"block_streaming": true,
|
|
"block_streaming_chunk_min_chars": 300,
|
|
"block_streaming_chunk_max_chars": 500,
|
|
"block_streaming_coalesce_min_chars": 200,
|
|
"block_streaming_coalesce_max_chars": 500
|
|
},
|
|
"enabled": true,
|
|
"python_requires": ">=3.12"
|
|
} |