if (type == null || !type.startsWith("text")) {
_logger.warning("Base response is not text, skipping!");
return;
}
List baseline = tokenize(baseBytes);
_diff = new LevenshteinDistance(baseline);
count = cmodel.getConversationCount();
_logger.info("Checking " + count + " conversaitons");
for (int i=0; i<count; i++) {
ConversationID cid = cmodel.getConversationAt(i);