diff --git a/functions.py b/functions.py index 348f71d..739b9c0 100644 --- a/functions.py +++ b/functions.py @@ -8,7 +8,10 @@ def processmsg(msg, rcpt): def command(msg, rcpt): if msg.startswith("!help"): - return "chatbot commands: \n" + "!help Show this help page" + response = "chatbot commands: \n" + response += "!help Show this help page" + response += "!ai [message] Ask llama2" + return response elif msg.startswith("!ai"): client = ollama.Client(host='https://ollama.krov.dmz.rs') response = client.chat(model='llama2-uncensored:latest', messages=[{'role':'user','content':f'{msg[4:]}'}])