Updated references from `redis_client`, `s3_client`, and `custom_conn` to unified names `cache`, `drive`, and `conn` for consistency across modules. Adjusted `add_suggestion_keyword` to use clearer parameter naming and enhanced custom syntax registration for better readability and maintainability.
17 lines
604 B
QBasic
17 lines
604 B
QBasic
let resume1 = GET_BOT_MEMORY("general");
|
|
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;
|
|
|
|
|
|
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 "You can ask me about any of the announcements or circulars."
|