[mirotalk] - fix typo

This commit is contained in:
Miroslav Pejic
2025-11-04 02:20:33 +01:00
parent a5f8ce58c5
commit 8fbf9836fb
+2 -1
View File
@@ -1206,10 +1206,11 @@ io.sockets.on('connect', async (socket) => {
// Add response to context // Add response to context
context.push({ role: 'assistant', content: message }); context.push({ role: 'assistant', content: message });
// Log conversation details // Log conversation details
log.info('ChatGPT', { log.debug('ChatGPT', {
time: time, time: time,
room: room_id, room: room_id,
name: peer_name, name: peer_name,
context: context,
contextLength: context.length, contextLength: context.length,
}); });
// Callback response to client // Callback response to client