- Rename script_name to param in automation flow and DB schema - Add BotMemory model and bot_memories table - Remove script_name field from automation - Enable sqlite support via rusqlite and related crates (optional) - Update prompts and queries to use param instead of script_name - Remove deprecated annoucements GBai templates and align add-req.sh - Refactor main to initialize automation service and simplify startup
21 lines
361 B
Rust
21 lines
361 B
Rust
pub mod bot_memory;
|
|
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 llm_keyword;
|
|
pub mod on;
|
|
pub mod print;
|
|
pub mod set;
|
|
pub mod set_schedule;
|
|
pub mod wait;
|
|
|
|
#[cfg(feature = "email")]
|
|
pub mod create_draft_keyword;
|
|
|
|
#[cfg(feature = "web_automation")]
|
|
pub mod get_website;
|