Updated references from `redis_client`, `s3_client`, and `custom_conn` to unified names `cache`, `drive`, and `conn` for consistency across modules. Adjusted `add_suggestion_keyword` to use clearer parameter naming and enhanced custom syntax registration for better readability and maintainability.
31 lines
570 B
Rust
31 lines
570 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;
|
|
pub mod set_user;
|
|
pub mod set_context;
|
|
pub mod set_current_context;
|
|
|
|
#[cfg(feature = "email")]
|
|
pub mod create_draft_keyword;
|
|
|
|
#[cfg(feature = "web_automation")]
|
|
pub mod get_website;
|