diff --git a/README.md b/README.md index bc9ab39..858ae4a 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ A basic echo-bot built with slixmpp and slixmpp-omemo that relays your messages ```bash git clone --bare https://github.com/m6freeman/ollama_slixmpp_omemo_bot -cd repo_name; git worktree add main; cd main +cd ollama_slixmpp_omemo_bot.git; git worktree add main; cd main python -m venv .venv; ./.venv/bin/activate pip install -r requirements.txt # There is a httpx dependancy conflict. These should be installed in this order. diff --git a/src/ollama_slixmpp_omemo_bot/ollama_bot.py b/src/ollama_slixmpp_omemo_bot/ollama_bot.py index 42d1fe2..75231b1 100644 --- a/src/ollama_slixmpp_omemo_bot/ollama_bot.py +++ b/src/ollama_slixmpp_omemo_bot/ollama_bot.py @@ -68,10 +68,11 @@ class OllamaBot(ClientXMPP): async def cmd_help(self, mto: JID, mtype: Optional[MessageTypes]) -> None: body = ( - "I'm the slixmpp-omemo ollama bot! " + "Hello, I am the ollama_slixmpp_omemo_bot!" "The following commands are available:\n" f"{self.cmd_prefix}verbose Send message or reply with log messages\n" f"{self.cmd_prefix}error Send message or reply only on error\n" + f"Typing anything else will be sent to llama3!\n" ) return await self.encrypted_reply(mto, mtype, body)