diff options
author | Anthony Wang | 2022-03-01 08:46:01 -0600 |
---|---|---|
committer | Anthony Wang | 2022-03-01 08:46:01 -0600 |
commit | 3de96f721a228b5059904aca9436b43f40723029 (patch) | |
tree | fb5cbad5e9971253433509d004c52ab5ed6bb58c | |
parent | 81a13d37fba838411dbff464719e71e6559c2af6 (diff) |
Add a no-op none backend for bot.py
-rw-r--r-- | bot.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ from transformers import AutoTokenizer, AutoModelForCausalLM parser = ArgumentParser() -parser.add_argument('-b', '--backend', choices=['mastodon', 'misskey', 'matrix'], default='mastodon', +parser.add_argument('-b', '--backend', choices=['mastodon', 'misskey', 'matrix', 'none'], default='mastodon', help='fediverse server type') parser.add_argument('-i', '--instance', help='Mastodon instance hosting the bot') parser.add_argument('-t', '--token', help='Mastodon application access token') |