From abb29fd42a5534dcc43f14b2a5cd578de6bad2b1 Mon Sep 17 00:00:00 2001 From: array-in-a-matrix Date: Mon, 15 Aug 2022 19:03:20 -0400 Subject: [PATCH] changed python module --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1551d29..5ac1b69 100644 --- a/README.md +++ b/README.md @@ -4,14 +4,16 @@ Matrix bot that generates messages based off of messages of other users using a ## Development setup +The project is split into 2 parts `index.js` and `textgen.py`. The `index.js` file contains the code that interacts with the user on Matrix and grabs text generated by the `textgen.py` file. + Install JavaSript SDK: ```sh -pnpm add matrix-bot-sdk +> pnpm add matrix-bot-sdk ``` Install Python module: ```sh -pip3 install textgenrnn +> pip3 install aitextgen ```