Monorepo for Aesthetic.Computer aesthetic.computer
at main 20 lines 524 B view raw
1#!/usr/bin/env fish 2 3# Continuous test of chat messages from MongoDB 4# Usage: ./test-continuous.fish [batch_size] 5 6set batch_size $argv[1] 7 8if test -z "$batch_size" 9 set batch_size 50 10end 11 12# Load MongoDB credentials 13set -x MONGODB_CONNECTION_STRING $MONGODB_CONNECTION_STRING 14set -x MONGODB_NAME "aesthetic" 15 16echo "🔍 Starting continuous chat message moderation test..." 17echo "📦 Batch size: $batch_size messages" 18echo "" 19 20node /workspaces/aesthetic-computer/censor/test-mongodb-messages.mjs $batch_size --continuous