utilitas 2000.3.27 → 2000.3.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -11
- package/dist/utilitas.lite.mjs +1 -1
- package/dist/utilitas.lite.mjs.map +1 -1
- package/lib/alan.mjs +266 -139
- package/lib/manifest.mjs +1 -1
- package/lib/speech.mjs +15 -139
- package/lib/storage.mjs +6 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,9 +27,11 @@ Works in Node.js and modern browsers.
|
|
|
27
27
|
| CLOUD_OPUS_45 | String | claude-opus-4.5 |
|
|
28
28
|
| CODE_INTERPRETER | Object | {"type":"code_interpreter"} |
|
|
29
29
|
| DEEPSEEK_32 | String | deepseek-3.2-speciale |
|
|
30
|
-
| FEATURE_ICONS | Object | {"audio":"📣","deepsearch":"🔍","fast":"⚡️","finetune":"🔧","image":"🎨","json":"📊","reasoning":"🧠","tools":"🧰","vision":"👁️"} |
|
|
30
|
+
| FEATURE_ICONS | Object | {"audio":"📣","deepsearch":"🔍","fast":"⚡️","finetune":"🔧","hearing":"👂","image":"🎨","json":"📊","reasoning":"🧠","tools":"🧰","video":"🎬","vision":"👁️"} |
|
|
31
31
|
| FUNCTION | Object | {"type":"function"} |
|
|
32
32
|
| GEMINI_25_FLASH | String | gemini-2.5-flash-preview-09-2025 |
|
|
33
|
+
| GEMINI_25_FLASH_TTS | String | gemini-2.5-flash-preview-tts |
|
|
34
|
+
| GEMINI_25_PRO_TTS | String | gemini-2.5-pro-tts |
|
|
33
35
|
| GEMINI_30_PRO_IMAGE | String | gemini-3-pro-image-preview |
|
|
34
36
|
| GPT_51 | String | gpt-5.1 |
|
|
35
37
|
| GPT_5_IMAGE | String | gpt-5-image |
|
|
@@ -50,7 +52,7 @@ Works in Node.js and modern browsers.
|
|
|
50
52
|
| k | Function | |
|
|
51
53
|
| listOpenAIModels | AsyncFunction | aiId, options |
|
|
52
54
|
| prompt | AsyncFunction | input, options |
|
|
53
|
-
|
|
|
55
|
+
| promptOpenRouter | AsyncFunction | aiId, content, options |
|
|
54
56
|
| resetSession | AsyncFunction | sessionId, options |
|
|
55
57
|
| talk | AsyncFunction | input, options |
|
|
56
58
|
| trimPrompt | AsyncFunction | getPrompt, trimFunc, contextWindow, options |
|
|
@@ -319,18 +321,12 @@ Works in Node.js and modern browsers.
|
|
|
319
321
|
|
|
320
322
|
| symbol | type | params / value |
|
|
321
323
|
| :--- | :--- | :--- |
|
|
322
|
-
| _NEED | Array |
|
|
323
|
-
|
|
|
324
|
-
|
|
|
325
|
-
| checkSay | AsyncFunction | options |
|
|
326
|
-
| checkWhisper | AsyncFunction | options |
|
|
327
|
-
| init | AsyncFunction | options |
|
|
324
|
+
| _NEED | Array | whisper-node |
|
|
325
|
+
| checkSay | AsyncFunction | |
|
|
326
|
+
| checkWhisper | AsyncFunction | |
|
|
328
327
|
| stt | AsyncFunction | audio, options |
|
|
329
|
-
| sttOpenAI | AsyncFunction | audio, options |
|
|
330
328
|
| sttWhisper | AsyncFunction | audio, options |
|
|
331
329
|
| tts | AsyncFunction | text, options |
|
|
332
|
-
| ttsGoogle | AsyncFunction | contents, options |
|
|
333
|
-
| ttsOpenAI | AsyncFunction | input, options |
|
|
334
330
|
| ttsSay | AsyncFunction | text, options |
|
|
335
331
|
|
|
336
332
|
### [ssl](./lib/ssl.mjs)
|