butterfly-bot 0.3.5

Butterfly Bot is an opinionated personal-ops AI assistant built for people who want results, not setup overhead.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diesel::table! {
    scheduled_tasks (id) {
        id -> Integer,
        user_id -> Text,
        name -> Text,
        prompt -> Text,
        run_at -> BigInt,
        interval_minutes -> Nullable<BigInt>,
        enabled -> Bool,
        created_at -> BigInt,
        updated_at -> BigInt,
        last_run_at -> Nullable<BigInt>,
        next_run_at -> BigInt,
    }
}