add ollama to help

This commit is contained in:
fram3d 2024-02-06 02:05:31 +01:00
parent c2286ae0a6
commit bc2e7422f5
Signed by: fram3d
GPG Key ID: 938920E709EEA32A
1 changed files with 4 additions and 1 deletions

View File

@ -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:]}'}])