Warning: session_start(): open(/var/lib/php/sessions/sess_fipqfotpsjr54h1v1o1lbcnmvn, 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
p {
Web web = lastChatLinesAsWeb(5);
for (WebNode node : web_nodesStartingWith(web, "Text ")) pcall {
S text = web_unquoteLastToken(node);
L categories = textToCategories(text);
for (S c : categories) {
WebNode catNode = web_findOrMakeForwardRelated(node, "is a");
web_setPosition(catNode, node.x+0.2, node.y-0.1);
web_addLabel(catNode, c);
}
}
showWeb_noAutoLayout(web, 1000, 700);
}
static L textToCategories(S text) {
if (matchStart("hello", text))
ret ll("greeting");
if (matchStart("yes", text) || matchStart("no", text))
ret ll("yes/no answer");
if (ai_isQuestion_1(text))
ret ll("question");
ret ll();
}