diff options
| author | Fuwn <[email protected]> | 2025-09-17 20:11:58 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-09-17 20:11:58 -0700 |
| commit | 7039eb7e2ea7ba2bdbf6c71db924630d3ff4a69f (patch) | |
| tree | b6ec94554cd569c121c0b9bf569fb8e1285db93e | |
| parent | feat(intelligent_moderator): Don't include reasoning in art re-flairs (diff) | |
| download | umabot-7039eb7e2ea7ba2bdbf6c71db924630d3ff4a69f.tar.xz umabot-7039eb7e2ea7ba2bdbf6c71db924630d3ff4a69f.zip | |
feat(intelligent_moderator): Include Discord server invite when marking as low-effort
| -rw-r--r-- | src/umabot/rules/intelligent_roleplay_moderator.py | 2 | ||||
| -rwxr-xr-x | test_moderator.py | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/umabot/rules/intelligent_roleplay_moderator.py b/src/umabot/rules/intelligent_roleplay_moderator.py index 81fda8e..4c00cb2 100644 --- a/src/umabot/rules/intelligent_roleplay_moderator.py +++ b/src/umabot/rules/intelligent_roleplay_moderator.py @@ -159,6 +159,8 @@ To improve your roleplay posts, consider: - Including meaningful character interactions - Ensuring your content adds value to the community +If you enjoy active roleplay, join the official r/okbuddyumamusume Discord server! It features a comprehensive layout of channels, forums, roles, bots, events, and more! https://discord.gg/okbuddyumamusume + If you believe this was done in error, please contact the moderators via Mod Mail. Thank you for understanding!""" diff --git a/test_moderator.py b/test_moderator.py index 6764a9e..061adda 100755 --- a/test_moderator.py +++ b/test_moderator.py @@ -409,6 +409,8 @@ def print_results(results: List[Dict[str, Any]], pause: bool = False, moderator: print(f" Reasoning: {formatted_reasoning}") else: print(f" Reasoning: {evaluation['reasoning']}") + + print(f" Discord Recommendation: If you enjoy active roleplay, join the official r/okbuddyumamusume Discord server! It features a comprehensive layout of channels, forums, roles, bots, events, and more! https://discord.gg/okbuddyumamusume") # Add pause between results if requested if pause and i < len(results): |