Warning: session_start(): open(/var/lib/php/sessions/sess_649tblua7176on1boe9o2vmfsk, 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
sS input1 = [[
My name is Hans
I am a 34 year old man
I used to work in a garage
]];
sS expected1 = [[
Hans is a 34 year old man
Hans has 3 fathers and 2 mothers
Hans used to work in a garage
]];
cmodule RecordSelfDescription > DynPrintLogAndEnabled {
void process(S input, bool speak) {
temp tempSetTL(emit_print_prefix, "[Bot] ");
temp speak ? tempSetTL(emit_onEmit, ll(vf dm_say)) : null;
pcallF(setAll(new Engine, input := nlPrint("[User] ", input)));
}
start-thread {
for (S input : tlft(inputs)) process(input, false);
dm_onTopInput_q(voidfunc(S s) { if (enabled) process(s, true) });
}
}