utilitas 1999.1.60 → 1999.1.62

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 CHANGED
@@ -54,18 +54,10 @@ Works in Node.js and modern browsers.
54
54
  | getSession | AsyncFunction | sessionId, options |
55
55
  | init | AsyncFunction | options |
56
56
  | initChat | AsyncFunction | options |
57
- | jpeg | String | image/jpeg |
58
57
  | listFiles | AsyncFunction | aiId, options |
59
58
  | listGptFineTuningEvents | AsyncFunction | aiId, job_id, options |
60
59
  | listGptFineTuningJobs | AsyncFunction | aiId, options |
61
60
  | listOpenAIModels | AsyncFunction | aiId, options |
62
- | m4a | String | audio/m4a |
63
- | mp3 | String | audio/mp3 |
64
- | mp4 | String | video/mp4 |
65
- | mpeg | String | video/mpeg |
66
- | mpega | String | audio/mpeg |
67
- | mpga | String | audio/mpga |
68
- | ogg | String | audio/ogg |
69
61
  | prompt | AsyncFunction | input, options |
70
62
  | promptAnthropic | AsyncFunction | aiId, content, options |
71
63
  | promptGemini | AsyncFunction | aiId, content, options |
@@ -76,8 +68,6 @@ Works in Node.js and modern browsers.
76
68
  | trimPrompt | AsyncFunction | getPrompt, trimFunc, contextWindow, options |
77
69
  | uploadFile | AsyncFunction | aiId, input, options |
78
70
  | uploadFileForFineTuning | AsyncFunction | aiId, content, options |
79
- | wav | String | audio/wav |
80
- | webm | String | audio/webm |
81
71
 
82
72
  ### [bee](./lib/bee.mjs)
83
73
 
@@ -380,10 +370,35 @@ Works in Node.js and modern browsers.
380
370
  | BUFFER | String | BUFFER |
381
371
  | DATAURL | String | DATAURL |
382
372
  | FILE | String | FILE |
373
+ | MIME_AAC | String | audio/aac |
374
+ | MIME_AVI | String | video/avi |
383
375
  | MIME_BINARY | String | application/octet-stream |
376
+ | MIME_FLAC | String | audio/flac |
377
+ | MIME_FLV | String | video/x-flv |
378
+ | MIME_GIF | String | image/gif |
379
+ | MIME_JPEG | String | image/jpeg |
384
380
  | MIME_JSON | String | application/json |
381
+ | MIME_M4A | String | audio/m4a |
382
+ | MIME_MOV | String | video/mov |
383
+ | MIME_MP3 | String | audio/mp3 |
384
+ | MIME_MP4 | String | video/mp4 |
385
+ | MIME_MPEG | String | video/mpeg |
386
+ | MIME_MPEGA | String | audio/mpeg |
387
+ | MIME_MPEGPS | String | video/mpegps |
388
+ | MIME_MPG | String | video/mpg |
389
+ | MIME_MPGA | String | audio/mpga |
390
+ | MIME_OGG | String | audio/ogg |
391
+ | MIME_OPUS | String | audio/opus |
392
+ | MIME_PCM | String | audio/pcm |
393
+ | MIME_PCM16 | String | audio/x-wav |
394
+ | MIME_PDF | String | application/pdf |
385
395
  | MIME_PNG | String | image/png |
386
396
  | MIME_TEXT | String | text/plain |
397
+ | MIME_TGPP | String | video/3gpp |
398
+ | MIME_WAV | String | audio/wav |
399
+ | MIME_WEBM | String | audio/webm |
400
+ | MIME_WEBP | String | image/webp |
401
+ | MIME_WMV | String | video/wmv |
387
402
  | STREAM | String | STREAM |
388
403
  | analyzeFile | AsyncFunction | any, options |
389
404
  | assertPath | AsyncFunction | path, type, mode, msg, code, options |