5605a39104
- Bot now logs its output to avoid repeat posts - Added description of features to README
15 lines
518 B
Python
15 lines
518 B
Python
model_file = "model.json"
|
|
# Filename of the model file generated by import_misskey.py. Path is relative.
|
|
|
|
instance_url = "example.com"
|
|
# Domain of the instance the bot is on, eg. botsin.space
|
|
|
|
cw = "markov bot generated post"
|
|
# Content warning to put on the bot's posts. Leave blank (cw = "") for no CW.
|
|
|
|
character_limit = 80
|
|
# Maximum length of the posts
|
|
|
|
log_length = 168
|
|
# How many of the most recently generated posts to log, so that the bot won't repeat them
|
|
# The default value of 168 logs a week of hourly posts |