2024-10-26 14:47:16 +00:00
# Setting up matrix-bot-chatgpt (optional, unmaintained)
2023-01-02 18:16:38 +00:00
2024-10-28 07:33:35 +00:00
**Note**: [matrix-chatgpt-bot ](https://github.com/matrixgpt/matrix-chatgpt-bot ) is now an archived (**unmaintained**) project. Talking to ChatGPT (and many other LLM providers) can happen via the much more featureful [baibot ](https://github.com/etkecc/baibot ), which can be installed using [this playbook ](configuring-playbook-bot-baibot.md ). Consider using that bot instead of this one.
2024-10-26 12:34:25 +00:00
2023-01-02 18:16:38 +00:00
The playbook can install and configure [matrix-chatgpt-bot ](https://github.com/matrixgpt/matrix-chatgpt-bot ) for you.
2023-01-10 15:22:54 +00:00
Talk to [ChatGPT ](https://openai.com/blog/chatgpt/ ) via your favourite Matrix client!
2023-01-02 18:16:38 +00:00
2024-12-04 02:57:15 +00:00
## Register the bot account
2023-01-02 18:16:38 +00:00
The playbook does not automatically create users for you. The bot requires an access token to be able to connect to your homeserver.
You **need to register the bot user manually** before setting up the bot.
Choose a strong password for the bot. You can generate a good password with a command like this: `pwgen -s 64 1` .
You can use the playbook to [register a new user ](registering-users.md ):
2024-11-28 09:33:56 +00:00
```sh
2023-01-02 18:16:38 +00:00
ansible-playbook -i inventory/hosts setup.yml --extra-vars='username=bot.chatgpt password=PASSWORD_FOR_THE_BOT admin=no' --tags=register-user
```
2024-12-04 02:57:15 +00:00
## Get an access token and create encryption keys
2023-01-02 18:16:38 +00:00
Refer to the documentation on [how to obtain an access token ](obtaining-access-tokens.md ).
2024-11-07 10:04:51 +00:00
To make sure the bot can read encrypted messages, it will need an encryption key, just like any other new user. While obtaining the access token, follow the prompts to setup a backup key. More information can be found in the [Element documentation ](https://element.io/help#encryption6 ).
2023-05-29 17:05:05 +00:00
2024-12-04 02:57:15 +00:00
## Adjusting the playbook configuration
2023-01-02 18:16:38 +00:00
2024-10-17 13:17:56 +00:00
Add the following configuration to your `inventory/host_vars/matrix.example.com/vars.yml` file (adapt to your needs):
2023-01-02 18:16:38 +00:00
```yaml
matrix_bot_chatgpt_enabled: true
2023-01-10 15:26:59 +00:00
2023-02-09 22:14:09 +00:00
# Obtain a new API key from https://platform.openai.com/account/api-keys
matrix_bot_chatgpt_openai_api_key: ''
2023-01-10 15:26:59 +00:00
# This is the default username
# matrix_bot_chatgpt_matrix_bot_username_localpart: 'bot.chatgpt'
2023-01-02 18:16:38 +00:00
# Matrix access token (from bot user above)
# see: https://webapps.stackexchange.com/questions/131056/how-to-get-an-access-token-for-element-riot-matrix
matrix_bot_chatgpt_matrix_access_token: ''
2023-07-30 02:50:05 +00:00
# Configuring the system promt used, needed if the bot is used for special tasks.
# More information: https://github.com/mustvlad/ChatGPT-System-Prompts
matrix_bot_chatgpt_matrix_bot_prompt_prefix: 'Instructions:\nYou are ChatGPT, a large language model trained by OpenAI.'
2023-01-02 18:16:38 +00:00
```
You will need to get tokens for ChatGPT.
2024-12-04 02:57:15 +00:00
## Installing
2023-01-02 18:16:38 +00:00
2024-12-01 07:42:30 +00:00
After configuring the playbook, run it with [playbook tags ](playbook-tags.md ) as below:
2023-01-02 18:16:38 +00:00
2024-12-01 07:42:30 +00:00
<!-- NOTE: let this conservative command run (instead of install - all) to make it clear that failure of the command means something is clearly broken. -->
2023-01-02 18:16:38 +00:00
```sh
2024-12-01 07:42:30 +00:00
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
2023-01-02 18:16:38 +00:00
```
2024-12-01 07:42:30 +00:00
**Notes**:
- The `ensure-matrix-users-created` playbook tag makes the playbook automatically create the bot's user account.
Edit installing instructions (#3844)
* Replace "just run-tags install-all/setup-all,start" with "just install-all/setup-all"
Thanks to the tip by Slavi that the overhead of ensure-matrix-users-created is negligible.
Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
* Edit installing instructions
- Move the anchor links to docs/just.md
- Add note about running "ensure-matrix-users-created" tags, if ansible-playbook's tags not "setup-all,ensure-matrix-users-created,start", ie. either "setup-all,start", "setup-email2matrix,start", "setup-aux-files,setup-corporal,start", or "setup-matrix-user-verification-service,start"
Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
* Update descriptions about installation
- Introduce the most conservative and stable raw ansible-playbook command.
- Introduce the just commands on installing.md and maintenance-upgrading-services.md, not on quick-start.md, since it is too early for quick start guide readers who are just starting to climb learning curve to use the shortcuts.
Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
* Update docs/configuring-playbook-etherpad.md: remove the note about ensure-matrix-users-created
Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
---------
Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
Co-authored-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
2024-12-01 15:04:54 +00:00
- The shortcut commands with the [`just` program ](just.md ) are also available: `just install-all` or `just setup-all`
2024-12-01 07:42:30 +00:00
2024-12-02 05:29:44 +00:00
`just install-all` is useful for maintaining your setup quickly ([2x-5x faster](../CHANGELOG.md#2x-5x-performance-improvements-in-playbook-runtime) than `just setup-all` ) when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all` , or these components will still remain installed.
2023-01-02 18:16:38 +00:00
## Usage
2024-10-17 13:17:56 +00:00
To use the bot, invite the `@bot.chatgpt:example.com` to the room you specified in a config, after that start speaking to it, use the prefix if you configured one or mention the bot.
2023-01-02 18:16:38 +00:00
You can also refer to the upstream [documentation ](https://github.com/matrixgpt/matrix-chatgpt-bot ).