From 5382b876e24861b98e7a60df395e7f31633f5bdb Mon Sep 17 00:00:00 2001 From: t3xhno Date: Tue, 6 Feb 2024 22:18:44 +0100 Subject: [PATCH] Added \!tasks to \!help --- functions.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/functions.py b/functions.py index 23872fb..94507ce 100644 --- a/functions.py +++ b/functions.py @@ -14,7 +14,8 @@ def command(msg, rcpt): response = "chatbot commands:" + "\n" response += "!help Show this help page" + "\n" response += "!ai [message] Ask llama2" + "\n" - response += "!wiki [message] Ask wiki" + response += "!wiki [message] Ask wiki\n" + response += "!tasks Show active tasks from the taskmanager\n" return response elif msg.startswith("!ai"): client = ollama.Client(host='https://ollama.krov.dmz.rs')