utilitas 2000.3.25 → 2000.3.27
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 +4 -12
- package/dist/utilitas.lite.mjs +1 -1
- package/dist/utilitas.lite.mjs.map +1 -1
- package/index.mjs +2 -3
- package/lib/alan.mjs +180 -32
- package/lib/manifest.mjs +1 -1
- package/lib/speech.mjs +9 -37
- package/package.json +1 -1
- package/lib/gen.mjs +0 -209
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ Works in Node.js and modern browsers.
|
|
|
21
21
|
|
|
22
22
|
| symbol | type | params / value |
|
|
23
23
|
| :--- | :--- | :--- |
|
|
24
|
-
| _NEED | Array | js-tiktoken,OpenAI |
|
|
24
|
+
| _NEED | Array | js-tiktoken,OpenAI,@google/genai |
|
|
25
25
|
| default | AsyncFunction | options |
|
|
26
26
|
| ATTACHMENTS | String | [ATTACHMENTS] |
|
|
27
27
|
| CLOUD_OPUS_45 | String | claude-opus-4.5 |
|
|
@@ -32,8 +32,11 @@ Works in Node.js and modern browsers.
|
|
|
32
32
|
| GEMINI_25_FLASH | String | gemini-2.5-flash-preview-09-2025 |
|
|
33
33
|
| GEMINI_30_PRO_IMAGE | String | gemini-3-pro-image-preview |
|
|
34
34
|
| GPT_51 | String | gpt-5.1 |
|
|
35
|
+
| GPT_5_IMAGE | String | gpt-5-image |
|
|
36
|
+
| IMAGEN_4_ULTRA | String | imagen-4.0-ultra-generate-001 |
|
|
35
37
|
| OPENAI_VOICE | String | OPENAI_VOICE |
|
|
36
38
|
| RETRIEVAL | Object | {"type":"retrieval"} |
|
|
39
|
+
| VEO_31 | String | veo-3.1-generate-preview |
|
|
37
40
|
| _NO_RENDER | Array | INSTRUCTIONS,MODELS,DEFAULT_MODELS |
|
|
38
41
|
| analyzeSessions | AsyncFunction | sessionIds, options |
|
|
39
42
|
| countTokens | AsyncFunction | input, options |
|
|
@@ -247,16 +250,6 @@ Works in Node.js and modern browsers.
|
|
|
247
250
|
| load | AsyncFunction | module, options |
|
|
248
251
|
| loop | AsyncFunction | func, interval, tout, delay, name, options |
|
|
249
252
|
|
|
250
|
-
### [gen](./lib/gen.mjs)
|
|
251
|
-
|
|
252
|
-
| symbol | type | params / value |
|
|
253
|
-
| :--- | :--- | :--- |
|
|
254
|
-
| _NEED | Array | OpenAI,@google/genai |
|
|
255
|
-
| default | AsyncFunction | options |
|
|
256
|
-
| image | AsyncFunction | prompt, options |
|
|
257
|
-
| init | AsyncFunction | options |
|
|
258
|
-
| video | AsyncFunction | prompt, options |
|
|
259
|
-
|
|
260
253
|
### [horizon](./lib/horizon.mjs)
|
|
261
254
|
|
|
262
255
|
| symbol | type | params / value |
|
|
@@ -333,7 +326,6 @@ Works in Node.js and modern browsers.
|
|
|
333
326
|
| checkWhisper | AsyncFunction | options |
|
|
334
327
|
| init | AsyncFunction | options |
|
|
335
328
|
| stt | AsyncFunction | audio, options |
|
|
336
|
-
| sttGoogle | AsyncFunction | audio, options |
|
|
337
329
|
| sttOpenAI | AsyncFunction | audio, options |
|
|
338
330
|
| sttWhisper | AsyncFunction | audio, options |
|
|
339
331
|
| tts | AsyncFunction | text, options |
|