botserver/src/basic/keywords/mod.rs
christopher d278b95fac feat(keywords, ui): add suggestion module and UI for context switching
Added new `add_suggestion` module to support suggestion handling logic.
Updated `index.html` to include a dynamic suggestions container that fetches and displays context suggestions.
This improves user experience by enabling quick context changes through interactive suggestion buttons.
2025-10-29 18:54:33 -03:00

28 lines
502 B
Rust

pub mod add_tool;
pub mod add_website;
pub mod bot_memory;
pub mod clear_tools;
pub mod create_site;
pub mod find;
pub mod first;
pub mod for_next;
pub mod format;
pub mod get;
pub mod hear_talk;
pub mod last;
pub mod list_tools;
pub mod llm_keyword;
pub mod on;
pub mod print;
pub mod remove_tool;
pub mod set;
pub mod set_kb;
pub mod set_schedule;
pub mod wait;
pub mod add_suggestion;
#[cfg(feature = "email")]
pub mod create_draft_keyword;
#[cfg(feature = "web_automation")]
pub mod get_website;