2026-04-12 13:11:23 +00:00
|
|
|
//! Matrix bot — sub-modules for the Matrix chat bot implementation.
|
2026-03-28 08:26:50 +00:00
|
|
|
pub mod context;
|
|
|
|
|
pub mod format;
|
|
|
|
|
pub mod history;
|
|
|
|
|
pub mod mentions;
|
|
|
|
|
pub mod messages;
|
|
|
|
|
pub mod run;
|
|
|
|
|
pub mod verification;
|
|
|
|
|
|
|
|
|
|
// Re-export all public types so existing import paths continue to work.
|
|
|
|
|
pub use format::markdown_to_html;
|
|
|
|
|
pub use history::{
|
|
|
|
|
ConversationEntry, ConversationHistory, ConversationRole, RoomConversation, save_history,
|
|
|
|
|
};
|
|
|
|
|
pub use run::run_bot;
|