Warning: session_start(): open(/var/lib/php/sessions/sess_a19og2fs71ubm81138032n3inb, 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
static void ai_spec_whatIsXInY(S s) {
new Matches m;
if (!flexMatchIC("What is * (in|of) *", unquote(s), m)) ret;
S elem = m.get(0), thing = m.get(1);
// trigger required speculations
post(s, "possibly related to:", elem);
post(s, "possibly related to:", thing);
ai_triggerSpeculationOn(thing);
// harvest answers
for (S text : takeFirst(ai_spec_maxAnswersToReturn(), ai_texts("$X", "is " + elem + " in", thing)))
post(quote(text), "answers", s);
}