- 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
6 lines
277 B
QBasic
6 lines
277 B
QBasic
TALK "Olá, pode me perguntar sobre qualquer coisa..."
|
|
let text = GET "default.gbdrive/default.pdf"
|
|
let resume = LLM "Say Hello and present a a resume from " + text
|
|
TALK resume
|
|
SET_CONTEXT "Este é o documento que você deve usar para responder dúvidas: " + text
|
|
return true;
|