2025-07-29 21:39:24 -03:00
|
|
|
let items = FIND "gb.rob", "ACTION=EMUL1"
|
2025-07-19 12:10:16 -03:00
|
|
|
FOR EACH item IN items
|
2025-07-29 21:39:24 -03:00
|
|
|
|
2025-07-20 15:01:18 -03:00
|
|
|
PRINT item.company
|
2025-07-30 23:26:06 -03:00
|
|
|
let website = WEBSITE OF item.company
|
2025-07-21 12:16:17 -03:00
|
|
|
PRINT website
|
2025-07-29 21:39:24 -03:00
|
|
|
|
2025-07-21 12:16:17 -03:00
|
|
|
WAIT 10
|
|
|
|
let page = GET website
|
|
|
|
|
|
|
|
let prompt = "Create a website for " + item.company + " with the following details: " + page
|
|
|
|
|
2025-07-29 21:39:24 -03:00
|
|
|
let alias = LLM "Return a single word for {item.company} like a token, no spaces, no special characters, no numbers, no uppercase letters."
|
2025-07-21 12:16:17 -03:00
|
|
|
|
2025-07-30 23:26:06 -03:00
|
|
|
CREATE SITE item.company + "bot", item.company, website, "site", prompt
|
2025-07-21 12:16:17 -03:00
|
|
|
|
|
|
|
let to = item.emailcto
|
|
|
|
let subject = "Simulador criado " + item.company
|
|
|
|
let body = "O simulador " + item.company + " foi criado com sucesso. Acesse o site: " + item.company + "bot"
|
|
|
|
|
2025-07-30 23:26:06 -03:00
|
|
|
CREATE_DRAFT to, subject, body
|
2025-07-21 12:16:17 -03:00
|
|
|
|
2025-07-29 21:39:24 -03:00
|
|
|
NEXT item
|