- Updated CLI to load configuration from user-specific and project-specific YAML files, prioritizing user settings. - Introduced a new command `/platforms` to display the status of connected messaging platforms (Telegram, Discord, WhatsApp). - Implemented a gateway system for handling messaging interactions, including session management and delivery routing for cron job outputs. - Added support for environment variable configuration and a dedicated gateway configuration file for advanced settings. - Enhanced documentation in README.md and added a new messaging.md file to guide users on platform integrations and setup. - Updated toolsets to include platform-specific capabilities for Telegram, Discord, and WhatsApp, ensuring secure and tailored interactions.
18 lines
368 B
Python
18 lines
368 B
Python
"""
|
|
Platform adapters for messaging integrations.
|
|
|
|
Each adapter handles:
|
|
- Receiving messages from a platform
|
|
- Sending messages/responses back
|
|
- Platform-specific authentication
|
|
- Message formatting and media handling
|
|
"""
|
|
|
|
from .base import BasePlatformAdapter, MessageEvent, SendResult
|
|
|
|
__all__ = [
|
|
"BasePlatformAdapter",
|
|
"MessageEvent",
|
|
"SendResult",
|
|
]
|