trie-bot/config.example.mjs
Ari Archer 50e72e34dc
fix import and config
Signed-off-by: Ari Archer <ari@ari.lt>
2024-05-31 17:00:50 +03:00

17 lines
606 B
JavaScript

"use strict";
const config = {
homeserver:
"https://matrix.ari.lt/" /* The full matrix homeserver, not just the delegated domain */,
token: "..." /* The access token of the bot account */,
prefix: "!t " /* The command !prefix - bot will only respond to messages that are valid commands starting with it */,
autojoin: true /* Should the bot auto-join rooms its invited to? */,
rooms: [
"#root:ari.lt",
"#quotes:ari.lt",
"#gpt:pain.agency",
] /* The rooms of trie-bot */,
model: "model.bin" /* The model of the Trie */,
};
export default config;