@airweave/sdk 0.6.69 → 0.6.71
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/dist/cjs/Client.js +2 -2
- package/dist/cjs/api/types/Collection.d.ts +4 -0
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/Client.mjs +2 -2
- package/dist/esm/api/types/Collection.d.mts +4 -0
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/package.json +1 -1
package/dist/cjs/Client.js
CHANGED
|
@@ -49,8 +49,8 @@ class AirweaveSDKClient {
|
|
|
49
49
|
"X-Framework-Version": _options === null || _options === void 0 ? void 0 : _options.frameworkVersion,
|
|
50
50
|
"X-Fern-Language": "JavaScript",
|
|
51
51
|
"X-Fern-SDK-Name": "@airweave/sdk",
|
|
52
|
-
"X-Fern-SDK-Version": "v0.6.
|
|
53
|
-
"User-Agent": "@airweave/sdk/v0.6.
|
|
52
|
+
"X-Fern-SDK-Version": "v0.6.71",
|
|
53
|
+
"User-Agent": "@airweave/sdk/v0.6.71",
|
|
54
54
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
55
55
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
56
56
|
}, _options === null || _options === void 0 ? void 0 : _options.headers) });
|
|
@@ -15,6 +15,10 @@ export interface Collection {
|
|
|
15
15
|
readable_id: string;
|
|
16
16
|
/** Unique system identifier for the collection. This UUID is generated automatically and used for internal references. */
|
|
17
17
|
id: string;
|
|
18
|
+
/** Vector dimensions used by this collection. Determines which embedding model is used: 3072 (text-embedding-3-large), 1536 (text-embedding-3-small), or 384 (MiniLM-L6-v2). */
|
|
19
|
+
vector_size: number;
|
|
20
|
+
/** Name of the embedding model used for this collection (e.g., 'text-embedding-3-large', 'text-embedding-3-small'). This ensures queries use the same model as the indexed data. */
|
|
21
|
+
embedding_model_name: string;
|
|
18
22
|
/** Timestamp when the collection was created (ISO 8601 format). */
|
|
19
23
|
created_at: string;
|
|
20
24
|
/** Timestamp when the collection was last modified (ISO 8601 format). */
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "v0.6.
|
|
1
|
+
export declare const SDK_VERSION = "v0.6.71";
|
package/dist/cjs/version.js
CHANGED
package/dist/esm/Client.mjs
CHANGED
|
@@ -13,8 +13,8 @@ export class AirweaveSDKClient {
|
|
|
13
13
|
"X-Framework-Version": _options === null || _options === void 0 ? void 0 : _options.frameworkVersion,
|
|
14
14
|
"X-Fern-Language": "JavaScript",
|
|
15
15
|
"X-Fern-SDK-Name": "@airweave/sdk",
|
|
16
|
-
"X-Fern-SDK-Version": "v0.6.
|
|
17
|
-
"User-Agent": "@airweave/sdk/v0.6.
|
|
16
|
+
"X-Fern-SDK-Version": "v0.6.71",
|
|
17
|
+
"User-Agent": "@airweave/sdk/v0.6.71",
|
|
18
18
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
19
19
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
20
20
|
}, _options === null || _options === void 0 ? void 0 : _options.headers) });
|
|
@@ -15,6 +15,10 @@ export interface Collection {
|
|
|
15
15
|
readable_id: string;
|
|
16
16
|
/** Unique system identifier for the collection. This UUID is generated automatically and used for internal references. */
|
|
17
17
|
id: string;
|
|
18
|
+
/** Vector dimensions used by this collection. Determines which embedding model is used: 3072 (text-embedding-3-large), 1536 (text-embedding-3-small), or 384 (MiniLM-L6-v2). */
|
|
19
|
+
vector_size: number;
|
|
20
|
+
/** Name of the embedding model used for this collection (e.g., 'text-embedding-3-large', 'text-embedding-3-small'). This ensures queries use the same model as the indexed data. */
|
|
21
|
+
embedding_model_name: string;
|
|
18
22
|
/** Timestamp when the collection was created (ISO 8601 format). */
|
|
19
23
|
created_at: string;
|
|
20
24
|
/** Timestamp when the collection was last modified (ISO 8601 format). */
|
package/dist/esm/version.d.mts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "v0.6.
|
|
1
|
+
export declare const SDK_VERSION = "v0.6.71";
|
package/dist/esm/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const SDK_VERSION = "v0.6.
|
|
1
|
+
export const SDK_VERSION = "v0.6.71";
|