@infino-ai/infino 0.1.2 → 0.1.4

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 CHANGED
@@ -80,17 +80,17 @@ CommonJS works too — `const { connect, IndexSpec } = require("@infino-ai/infin
80
80
 
81
81
  ## Documentation
82
82
 
83
- Full docs, guides, and the API reference live at **[docs.infino.ai](https://docs.infino.ai)**:
84
-
85
- - [Quickstart](https://docs.infino.ai/quickstart) — install to first query
86
- - [Core concepts](https://docs.infino.ai/core-concepts) — superfiles, commits, and indexes
87
- - Guides — [Tables & indexing](https://docs.infino.ai/guides/tables) ·
88
- [Search: BM25, vector, hybrid](https://docs.infino.ai/guides/search) ·
89
- [Embeddings](https://docs.infino.ai/guides/embeddings) ·
90
- [Storage & credentials](https://docs.infino.ai/guides/storage)
91
- - [SQL reference](https://docs.infino.ai/sql-reference) — query tables and the search table-valued functions
92
- - [API reference](https://docs.infino.ai/api-reference) — the full Node surface, generated from the package
93
- - [Integrations](https://docs.infino.ai/integrations) — LangChain, CrewAI, Vercel AI SDK, MCP
83
+ Full docs, guides, and the API reference live at **[infino.ai/docs](https://infino.ai/docs)**:
84
+
85
+ - [Quickstart](https://infino.ai/docs/quickstart) — install to first query
86
+ - [Core concepts](https://infino.ai/docs/core-concepts) — superfiles, commits, and indexes
87
+ - Guides — [Tables & indexing](https://infino.ai/docs/guides/tables) ·
88
+ [Search: BM25, vector, hybrid](https://infino.ai/docs/guides/search) ·
89
+ [Embeddings](https://infino.ai/docs/guides/embeddings) ·
90
+ [Storage & credentials](https://infino.ai/docs/guides/storage)
91
+ - [SQL reference](https://infino.ai/docs/sql-reference) — query tables and the search table-valued functions
92
+ - [API reference](https://infino.ai/docs/api-reference) — the full Node surface, generated from the package
93
+ - [Integrations](https://infino.ai/docs/integrations) — LangChain, CrewAI, Vercel AI SDK, MCP
94
94
  - [Examples](examples) — runnable agent-memory and hybrid-search-service demos
95
95
 
96
96
  ## Building from source
package/infino/index.d.ts CHANGED
@@ -19,8 +19,8 @@ export type AppendData = RowRecord[] | arrow.Table | arrow.RecordBatch | Buffer
19
19
  export interface ConnectOptions {
20
20
  /**
21
21
  * Credentials/tuning for the URI-selected backend, keyed by `object_store`
22
- * config strings (`aws_*` / `azure_*`). An unknown key is rejected at
23
- * `connect`.
22
+ * config strings (`aws_*` / `azure_*` / `google_*`). An unknown key is
23
+ * rejected at `connect`.
24
24
  */
25
25
  storageOptions?: Record<string, string>;
26
26
  /** Local disk-cache directory for remote-backed tables. */
@@ -11,8 +11,8 @@
11
11
  export interface ConnectOptions {
12
12
  /**
13
13
  * Credentials/tuning for the URI-selected backend, keyed by
14
- * `object_store` config strings (`aws_*` / `azure_*`). An unknown key
15
- * is rejected at `connect`.
14
+ * `object_store` config strings (`aws_*` / `azure_*` / `google_*`). An
15
+ * unknown key is rejected at `connect`.
16
16
  */
17
17
  storageOptions?: Record<string, string>
18
18
  /** Local disk-cache directory for remote-backed tables. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infino-ai/infino",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
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.1.2",
86
- "infx-darwin-arm64": "0.1.2",
87
- "infx-linux-x64-gnu": "0.1.2",
88
- "infx-linux-arm64-gnu": "0.1.2",
89
- "infx-linux-x64-musl": "0.1.2",
90
- "infx-linux-arm64-musl": "0.1.2"
85
+ "infx-darwin-x64": "0.1.4",
86
+ "infx-darwin-arm64": "0.1.4",
87
+ "infx-linux-x64-gnu": "0.1.4",
88
+ "infx-linux-arm64-gnu": "0.1.4",
89
+ "infx-linux-x64-musl": "0.1.4",
90
+ "infx-linux-arm64-musl": "0.1.4"
91
91
  },
92
92
  "devDependencies": {
93
93
  "@napi-rs/cli": "^2.18.0",