diff options
| author | Fuwn <[email protected]> | 2025-09-17 20:12:45 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-09-17 20:12:45 -0700 |
| commit | bbe6e5457c452c575bad91376299536c7ed9d20c (patch) | |
| tree | 3079d2405b31a7c358e1d08d44a47b585d639339 /test_moderator.py | |
| parent | feat(intelligent_moderator): Include Discord server invite when marking as lo... (diff) | |
| download | umabot-bbe6e5457c452c575bad91376299536c7ed9d20c.tar.xz umabot-bbe6e5457c452c575bad91376299536c7ed9d20c.zip | |
feat(intelligent_moderator): Update response grammar
Diffstat (limited to 'test_moderator.py')
| -rwxr-xr-x | test_moderator.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test_moderator.py b/test_moderator.py index 061adda..939d214 100755 --- a/test_moderator.py +++ b/test_moderator.py @@ -286,7 +286,7 @@ class TestIntelligentModerator(IntelligentModeratorBase): issues.append('no plot development') if any(word in reasoning_lower for word in ['effort', 'substance', 'content']): if 'low' in reasoning_lower or 'lack' in reasoning_lower: - issues.append('low effort') + issues.append('low-effort') if any(word in reasoning_lower for word in ['creativity', 'originality']): if 'lack' in reasoning_lower or 'no' in reasoning_lower: issues.append('lacks creativity') @@ -378,7 +378,7 @@ def print_results(results: List[Dict[str, Any]], pause: bool = False, moderator: if action == "CHANGE_FLAIR_TO_ART": print(" šØ Change flair to Art") elif action == "REMOVE_POST": - print(" šļø Remove post (low effort)") + print(" šļø Remove post (low-effort)") elif action == "ALLOW_POST": print(" ā
Allow post") @@ -399,8 +399,8 @@ def print_results(results: List[Dict[str, Any]], pause: bool = False, moderator: if "REMOVE_POST" in actions: print(f"\nš§ Mod Mail (Low Effort Removal):") - print(f" Subject: Your roleplay post has been removed for low effort") - print(f" Message: Your roleplay post has been removed because it was determined to be low effort content.") + print(f" Subject: Your roleplay post has been removed for low-effort") + print(f" Message: Your roleplay post has been removed because it was determined to be low-effort content.") # Format reasoning based on moderator's reasoning level if moderator: |