text-gen-bot/README.md

20 lines
447 B
Markdown
Raw Normal View History

2022-08-15 00:50:58 -04:00
# text-gen-bot
2022-08-15 17:46:01 -04:00
Matrix bot that generates messages based off of messages of other users using a neural network.
## Development setup
2022-08-15 19:03:20 -04:00
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.
2022-08-15 17:46:01 -04:00
Install JavaSript SDK:
```sh
2022-08-15 19:03:20 -04:00
> pnpm add matrix-bot-sdk
2022-08-15 17:46:01 -04:00
```
Install Python module:
```sh
2022-08-15 19:03:20 -04:00
> pip3 install aitextgen
2022-08-15 17:46:01 -04:00
```