@instant.dev/vectors 0.1.2 → 0.1.3

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.
@@ -6,6 +6,13 @@
6
6
  class VectorManager {
7
7
 
8
8
  constructor () {
9
+ this.__initialize__();
10
+ }
11
+
12
+ /**
13
+ * @private
14
+ */
15
+ __initialize__ () {
9
16
  this.maximumBatchSize = 7168 * 4; // 4 tokens per word, estimated
10
17
  this.maximumParallelRequests = 10; // 10 requests simultaneously max
11
18
  this.fastQueueTime = 10; // time to wait if no other entries are added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instant.dev/vectors",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Utility for batch creating vectors via API",
5
5
  "main": "index.js",
6
6
  "scripts": {