@infino-ai/infino 0.6.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 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: per-superfile IDF (default) or corpus-wide
11
- * `"global"` IDF across superfiles. */
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: `"per_superfile"` (default) or `"global"`. */
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[];
@@ -93,9 +93,10 @@ export interface VectorFilter {
93
93
  /** Per-column FTS options for `IndexSpec.fts`. */
94
94
  export interface FtsOptions {
95
95
  /**
96
- * Tokenizer: `"ascii_lower"` (default — ASCII split + lowercase,
97
- * non-ASCII dropped) or `"standard"` (the Unicode-aware UAX #29
98
- * tokenizer that keeps non-ASCII text).
96
+ * Tokenizer: `"standard"` (the default — the Unicode-aware UAX #29
97
+ * tokenizer that keeps non-ASCII text) or `"ascii_lower"` (ASCII
98
+ * split + lowercase, non-ASCII dropped). It is recorded with the
99
+ * table and cannot be changed afterwards.
99
100
  */
100
101
  analyzer?: string
101
102
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infino-ai/infino",
3
- "version": "0.6.0",
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.6.0",
86
- "infx-darwin-arm64": "0.6.0",
87
- "infx-linux-x64-gnu": "0.6.0",
88
- "infx-linux-arm64-gnu": "0.6.0",
89
- "infx-linux-x64-musl": "0.6.0",
90
- "infx-linux-arm64-musl": "0.6.0"
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",