fixed a few names

This commit is contained in:
Matt Freeman 2024-06-30 16:33:07 -04:00
parent f7e5c84807
commit a57635a16f
2 changed files with 3 additions and 2 deletions

View File

@ -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.

View File

@ -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)