- Strip content up to the “final<|message|>” token in OpenAI responses. - Replace the text‑based connection‑status indicator with a small flashing circle. - Simplify updateConnectionStatus to take only the status argument. - Remove special handling of the initial assistant message and streamline empty‑state removal. - Clean up stray blank lines in the announcement template.
7 lines
278 B
QBasic
7 lines
278 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;
|