From bc2e7422f5573d0b9c88ee36eae456ba02361fd0 Mon Sep 17 00:00:00 2001 From: fram3d Date: Tue, 6 Feb 2024 02:05:31 +0100 Subject: [PATCH] add ollama to help --- functions.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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:]}'}])