@infino-ai/infino 0.7.0 → 0.7.1
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/infino/index.d.ts +3 -3
- package/package.json +7 -7
package/infino/index.d.ts
CHANGED
|
@@ -7,8 +7,8 @@ export declare const BUILDER_ID: string;
|
|
|
7
7
|
export type Metric = "cosine" | "l2sq" | "negdot";
|
|
8
8
|
/** Boolean mode for multi-term FTS queries. */
|
|
9
9
|
export type BoolMode = "or" | "and";
|
|
10
|
-
/** BM25 statistics scope:
|
|
11
|
-
* `"
|
|
10
|
+
/** BM25 statistics scope: corpus-wide `"global"` IDF across superfiles
|
|
11
|
+
* (the default) or `"per_superfile"` segment-local IDF. */
|
|
12
12
|
export type Bm25Stats = "per_superfile" | "global";
|
|
13
13
|
/** A row from a query/search when not materializing to Arrow. */
|
|
14
14
|
export type RowRecord = Record<string, unknown>;
|
|
@@ -97,7 +97,7 @@ export interface OptimizeOptions {
|
|
|
97
97
|
}
|
|
98
98
|
export interface Bm25SearchOptions {
|
|
99
99
|
mode?: BoolMode;
|
|
100
|
-
/** BM25 statistics scope: `"
|
|
100
|
+
/** BM25 statistics scope: `"global"` (default) or `"per_superfile"`. */
|
|
101
101
|
stats?: Bm25Stats;
|
|
102
102
|
/** Columns to return, e.g. `["_id", "score"]`; omit for full rows. */
|
|
103
103
|
projection?: string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infino-ai/infino",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "Fast search on object storage — SQL, full-text, and vector search.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"publishConfig": {
|
|
@@ -82,12 +82,12 @@
|
|
|
82
82
|
"apache-arrow": "^17"
|
|
83
83
|
},
|
|
84
84
|
"optionalDependencies": {
|
|
85
|
-
"infx-darwin-x64": "0.7.
|
|
86
|
-
"infx-darwin-arm64": "0.7.
|
|
87
|
-
"infx-linux-x64-gnu": "0.7.
|
|
88
|
-
"infx-linux-arm64-gnu": "0.7.
|
|
89
|
-
"infx-linux-x64-musl": "0.7.
|
|
90
|
-
"infx-linux-arm64-musl": "0.7.
|
|
85
|
+
"infx-darwin-x64": "0.7.1",
|
|
86
|
+
"infx-darwin-arm64": "0.7.1",
|
|
87
|
+
"infx-linux-x64-gnu": "0.7.1",
|
|
88
|
+
"infx-linux-arm64-gnu": "0.7.1",
|
|
89
|
+
"infx-linux-x64-musl": "0.7.1",
|
|
90
|
+
"infx-linux-arm64-musl": "0.7.1"
|
|
91
91
|
},
|
|
92
92
|
"devDependencies": {
|
|
93
93
|
"@napi-rs/cli": "^2.18.0",
|