utilitas 2000.3.46 → 2000.3.48
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 -9
- package/dist/utilitas.lite.mjs +1 -1
- package/dist/utilitas.lite.mjs.map +1 -1
- package/index.mjs +4 -4
- package/lib/alan.mjs +1 -0
- package/lib/manifest.mjs +2 -1
- package/lib/rag.mjs +252 -0
- package/package.json +2 -1
- package/lib/embedding.mjs +0 -160
package/README.md
CHANGED
|
@@ -209,15 +209,6 @@ Works in Node.js and modern browsers.
|
|
|
209
209
|
| rawSend | AsyncFunction | data |
|
|
210
210
|
| send | AsyncFunction | email, subject, text, html, args, options |
|
|
211
211
|
|
|
212
|
-
### [embedding](./lib/embedding.mjs)
|
|
213
|
-
|
|
214
|
-
| symbol | type | params / value |
|
|
215
|
-
| :--- | :--- | :--- |
|
|
216
|
-
| _NEED | Array | openai |
|
|
217
|
-
| default | AsyncFunction | options |
|
|
218
|
-
| embed | AsyncFunction | input, options |
|
|
219
|
-
| init | AsyncFunction | options |
|
|
220
|
-
|
|
221
212
|
### [encryption](./lib/encryption.mjs)
|
|
222
213
|
|
|
223
214
|
| symbol | type | params / value |
|
|
@@ -292,6 +283,16 @@ Works in Node.js and modern browsers.
|
|
|
292
283
|
| pickFastestHttpServer | AsyncFunction | urls, options |
|
|
293
284
|
| ping | AsyncFunction | host, options |
|
|
294
285
|
|
|
286
|
+
### [rag](./lib/rag.mjs)
|
|
287
|
+
|
|
288
|
+
| symbol | type | params / value |
|
|
289
|
+
| :--- | :--- | :--- |
|
|
290
|
+
| _NEED | Array | openai,@google-cloud/discoveryengine |
|
|
291
|
+
| embed | AsyncFunction | input, options |
|
|
292
|
+
| initEmbedding | AsyncFunction | options |
|
|
293
|
+
| initReranker | AsyncFunction | options |
|
|
294
|
+
| rerank | AsyncFunction | query, records, options |
|
|
295
|
+
|
|
295
296
|
### [sentinel](./lib/sentinel.mjs)
|
|
296
297
|
|
|
297
298
|
| symbol | type | params / value |
|