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

36 lines
997 B
JSON
Raw Normal View History

{
"id": "nostr",
"name": "Nostr",
"version": "1.0.0",
"label": "Nostr",
"aliases": [],
"description": "Nostr 去中心化社交协议渠道插件,支持 NIP-04 / NIP-17 加密私信",
"author": "ForcePilot Team",
"order": 100,
"enabled": true,
"dependencies": ["websockets", "coincurve", "bech32", "cryptography"],
"python_requires": ">=3.12",
"capabilities": {
"chat_types": ["direct"],
"message_types": ["text", "image", "file"],
"interactions": ["dm", "pairing"],
"reactions": true,
"typing_indicator": false,
"threads": true,
"edit": true,
"unsend": true,
"reply": true,
"media": true,
"native_commands": false,
"polls": false,
"pins": false,
"group_management": false,
"adaptive_cards": false,
"streaming": true,
"streaming_mode": "block_streaming",
"block_streaming": true,
"sse_support": false,
"block_streaming_chunk_min_chars": 800,
"block_streaming_chunk_max_chars": 1200
}
}