utilitas 1999.1.55 → 1999.1.57
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 +10 -7
- package/dist/utilitas.lite.mjs +1 -1
- package/dist/utilitas.lite.mjs.map +1 -1
- package/index.mjs +3 -3
- package/lib/gen.mjs +207 -0
- package/lib/manifest.mjs +1 -1
- package/lib/shell.mjs +5 -3
- package/lib/utilitas.mjs +1 -1
- package/package.json +1 -1
- package/lib/image.mjs +0 -102
package/README.md
CHANGED
|
@@ -263,20 +263,22 @@ Works in Node.js and modern browsers.
|
|
|
263
263
|
| load | AsyncFunction | module, options |
|
|
264
264
|
| loop | AsyncFunction | func, interval, tout, delay, name, options |
|
|
265
265
|
|
|
266
|
-
### [
|
|
266
|
+
### [gen](./lib/gen.mjs)
|
|
267
267
|
|
|
268
268
|
| symbol | type | params / value |
|
|
269
269
|
| :--- | :--- | :--- |
|
|
270
|
-
|
|
|
270
|
+
| _NEED | Array | OpenAI |
|
|
271
|
+
| default | AsyncFunction | options |
|
|
272
|
+
| generateImage | AsyncFunction | prompt, options |
|
|
273
|
+
| generateVideo | AsyncFunction | prompt, options |
|
|
274
|
+
| getGeminiVideo | AsyncFunction | jobId |
|
|
275
|
+
| init | AsyncFunction | options |
|
|
271
276
|
|
|
272
|
-
### [
|
|
277
|
+
### [horizon](./lib/horizon.mjs)
|
|
273
278
|
|
|
274
279
|
| symbol | type | params / value |
|
|
275
280
|
| :--- | :--- | :--- |
|
|
276
|
-
|
|
|
277
|
-
| default | AsyncFunction | options |
|
|
278
|
-
| generate | AsyncFunction | prompt, options |
|
|
279
|
-
| init | AsyncFunction | options |
|
|
281
|
+
| default | Object | {} |
|
|
280
282
|
|
|
281
283
|
### [media](./lib/media.mjs)
|
|
282
284
|
|
|
@@ -322,6 +324,7 @@ Works in Node.js and modern browsers.
|
|
|
322
324
|
| symbol | type | params / value |
|
|
323
325
|
| :--- | :--- | :--- |
|
|
324
326
|
| default | AsyncFunction | command, options |
|
|
327
|
+
| assertCommand | Function | command |
|
|
325
328
|
| assertExist | AsyncFunction | bin, er, code |
|
|
326
329
|
| exec | AsyncFunction | command, options |
|
|
327
330
|
| exist | Function | bin |
|