feat: Express + Whisper + 3 LLM + UI с микрофоном

This commit is contained in:
2026-06-01 22:06:28 +03:00
parent 098c697973
commit 1945f8868c
791 changed files with 84270 additions and 18 deletions
+6
View File
@@ -0,0 +1,6 @@
'use strict';
/** @type {import('./isNegativeZero')} */
module.exports = function isNegativeZero(x) {
return x === 0 && 1 / x === 1 / -0;
};