Warning: session_start(): open(/var/lib/php/sessions/sess_ud4ajt3d1i8n4quli03b2c7sik, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
!7
cmodule IsBot > DynAttractorBot {
AttractorBot makeBot() {
ret testBot(attractorBotFromLambda(s -> {
// tautological case
if (matchDoubleRest("is", s))
ret with emitAnswer("yes, obviously");
LS tok = wordTok(s);
print(s, indicesOfAny(tok, mechCISet("Determiners")));
}));
}
AttractorBot testBot(AttractorBot bot) {
testAttractorBotResponses_noFail(bot,
"is green green?", "yes, obviously",
"is a man a child?", "I wonder if a man is a child");
ret bot;
}
}