Warning: session_start(): open(/var/lib/php/sessions/sess_1hfi6oeel5ferns7ma08q4hgs7, 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 static S html() { new StringBuilder buf; buf.append(""); buf.append("TinyBrain Chat Bots"); buf.append(""); buf.append("

TinyBrain Bots

"); buf.append(""); buf.append("

Hit count: " + getOpt(mainBot, "hitCount") + "

"); buf.append("

Last interactions:

"); pcall { int maxInteractionsToPrint = 10; L history = cast get(mainBot, "history"); for (int i = l(history)-1; i >= 0 && i >= l(history)-maxInteractionsToPrint; i--) { Map m = history.get(i); buf.append("

" + htmlencode(m.get("question")) + "
    " + htmlencode(m.get("answer")) + "

"); } } buf.append(""); buf.append(""); ret str(buf); }