robit-chatbot 0.1.5

Multi-session Bot infrastructure for robit (platform-agnostic base).
Documentation
//! robit-chatbot: Multi-session Bot infrastructure for the Robit framework.
//!
//! Provides the platform-agnostic `PlatformAdapter` trait, `ChatbotManager`
//! (multi-session orchestration), `ChatbotFrontend` (per-session Frontend
//! implementation with streaming), `Confirmer` (inline tool confirmation),
//! and a Markdown sanitizer. Platform crates (e.g. `robit-qq`) implement
//! `PlatformAdapter` and reuse everything else.

pub mod adapter;
pub mod confirmer;
pub mod extensions;
pub mod frontend;
pub mod manager;
pub mod markdown;
pub mod tool;

pub use adapter::{
    ChatMessage, ChatType, MarkdownFeatures, MediaAttachment, PlatformAdapter, PlatformCaps,
    PlatformEvent, SendResult, SenderInfo, UploadResult,
};
pub use confirmer::{ConfirmKeywords, Confirmer};
pub use extensions::PlatformExtWrapper;
pub use frontend::{ChatbotFrontend, PlatformExt, PlatformSender};
pub use manager::{AgentHandle, ChatbotManager, ManagerError};