- Remove `scripts_dir` from `AutomationService` and its constructor, as it was unused.
- Drop LLM and embedding server readiness checks; the service now only schedules periodic tasks.
- Increase the health‑check interval from 5 seconds to 15 seconds for reduced load.
- Streamline the LLM keyword prompt to a concise `"User: {}"` format, removing verbose boilerplate.
- Remove unnecessary logging and LLM cache handling code from the bot orchestrator, cleaning up unused environment variable checks and cache queries.
18 lines
634 B
QBasic
18 lines
634 B
QBasic
let resume1 = GET_BOT_MEMORY("resume");
|
|
let resume2 = GET_BOT_MEMORY("auxiliom");
|
|
let resume3 = GET_BOT_MEMORY("toolbix");
|
|
|
|
SET_CONTEXT "general" AS resume1;
|
|
SET_CONTEXT "auxiliom" AS resume2;
|
|
SET_CONTEXT "toolbix" AS resume3;
|
|
|
|
CLEAR_SUGGESTIONS;
|
|
|
|
ADD_SUGGESTION "general" AS "Show me the weekly announcements"
|
|
ADD_SUGGESTION "auxiliom" AS "Will Auxiliom help me with what?"
|
|
ADD_SUGGESTION "auxiliom" AS "What does Auxiliom do?"
|
|
ADD_SUGGESTION "toolbix" AS "Show me Toolbix features"
|
|
ADD_SUGGESTION "toolbix" AS "How can Toolbix help my business?"
|
|
|
|
TALK resume1
|
|
TALK "You can ask me about any of the announcements or circulars."
|