botserver/src/basic/keywords/mod.rs

28 lines
478 B
Rust
Raw Normal View History

2025-10-18 18:19:08 -03:00
pub mod add_tool;
pub mod add_website;
pub mod bot_memory;
2025-10-18 18:19:08 -03:00
pub mod clear_tools;
2025-10-06 10:30:17 -03:00
pub mod create_site;
pub mod find;
pub mod first;
pub mod for_next;
2025-10-07 10:53:09 -03:00
pub mod format;
2025-10-06 10:30:17 -03:00
pub mod get;
2025-10-11 12:29:03 -03:00
pub mod hear_talk;
2025-10-07 10:53:09 -03:00
pub mod last;
2025-10-18 18:19:08 -03:00
pub mod list_tools;
2025-10-06 10:30:17 -03:00
pub mod llm_keyword;
pub mod on;
pub mod print;
2025-10-18 18:19:08 -03:00
pub mod remove_tool;
2025-10-06 10:30:17 -03:00
pub mod set;
2025-10-18 18:19:08 -03:00
pub mod set_kb;
2025-10-06 10:30:17 -03:00
pub mod set_schedule;
pub mod wait;
2025-10-11 12:29:03 -03:00
#[cfg(feature = "email")]
2025-10-13 17:43:03 -03:00
pub mod create_draft_keyword;
2025-10-11 12:29:03 -03:00
#[cfg(feature = "web_automation")]
pub mod get_website;