README.md

December 15, 2025 ยท View on GitHub

๐Ÿ› ๏ธ Configuration

The bot's behavior is controlled by a combination of static and dynamic configuration.

Static configuration

The bot can be configured using a YAML configuration file as well as environment variables.

When running the bot locally (during ๐Ÿง‘โ€๐Ÿ’ป development), the bot's configuration is read from the var/app/config.yml file. This file is created from the template found in etc/app/config.yml.dist.

Certain keys can be left unset, in which case ๐Ÿ“ hardcoded defaults would be used.

Some configuration keys found in the YAML configuration can be overridden by setting an environment variable (dots should be replaced with _). Example:

  • to override command_prefix, set an environment variable BAIBOT_COMMAND_PREFIX
  • to override homeserver.server_name, set an environment variable BAIBOT_HOMESERVER_SERVER_NAME

You can see the list of supported environment variables in the ๐Ÿฆ€ src/entity/cfg/env.rs file.

Warning

The static configuration contains an initial_global_config key, which is used to populate the bot's global configuration (stored as dynamic configuration) the first time the bot starts. Modifying this subsequently will not have any effect. After initial global configuration creation, it's expected to be managed dynamically via chat commands.

Dynamic configuration

Besides the bot's static configuration, the bot can also be configured dynamically at runtime (via chat messages).

This includes changes to ๐Ÿ”’ Access, ๐Ÿค– Agents and ๐Ÿ› ๏ธ Room Settings.

Room Settings

Room Settings come from 3 different levels with priority in the following order (higher to lower):

  • ๐Ÿ“ per-room (!bai config room .. commands)
  • ๐ŸŒ globally (!bai config global .. commands)
  • ๐Ÿ“ as hardcoded defaults

You can adjust the following settings per room and/or globally:

Refer to the bot's help messages (as a response to a !bai config help command) for the most up-to-date information on what Room Settings can be configured.

You can get an overview of the configuration affecting the current room (a mix of hardcoded defaults, agent defaults, global and room-level settings) by sending a !bai config status command to the room.