ForcePilot/backend/package/yuxi/channel/extensions/msteams/plugin.json

38 lines
1.3 KiB
JSON
Raw Normal View History

{
"id": "msteams",
"name": "Microsoft Teams",
"version": "0.2.0",
"description": "Microsoft Teams 渠道插件,基于 Bot Framework Webhook + JWT 认证,支持 Proactive Messaging、Adaptive Card、SSO、Graph API 扩展",
"author": "ForcePilot Team",
"order": 50,
"dependencies": ["httpx>=0.27.0", "uvicorn>=0.30.0", "PyJWT>=2.8.0", "cryptography>=42.0.0"],
"capabilities": {
"chat_types": ["direct", "group", "channel", "thread"],
"message_types": ["text", "image", "file", "video", "audio"],
"interactions": ["adaptive_card", "button", "command"],
"reactions": true,
"typing_indicator": true,
"threads": true,
"edit": true,
"unsend": true,
"reply": true,
"media": true,
"native_commands": false,
"polls": true,
"streaming": true,
"streaming_mode": "block",
"block_streaming": true,
"block_streaming_chunk_min_chars": 1500,
"block_streaming_chunk_max_chars": 4000,
"block_streaming_coalesce_min_chars": 1500,
"block_streaming_coalesce_idle_ms": 1000,
"adaptive_cards": true,
"sso": true,
"feedback_loop": true,
"task_modules": true,
"messaging_extensions": true
},
"enabled": true,
"python_requires": ">=3.12"
}