@infino-ai/infino 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.
- package/README.md +11 -11
- package/infino/index.d.ts +2 -2
- package/infino/native.d.ts +2 -2
- package/package.json +7 -7
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 **[
|
|
84
|
-
|
|
85
|
-
- [Quickstart](https://
|
|
86
|
-
- [Core concepts](https://
|
|
87
|
-
- Guides — [Tables & indexing](https://
|
|
88
|
-
[Search: BM25, vector, hybrid](https://
|
|
89
|
-
[Embeddings](https://
|
|
90
|
-
[Storage & credentials](https://
|
|
91
|
-
- [SQL reference](https://
|
|
92
|
-
- [API reference](https://
|
|
93
|
-
- [Integrations](https://
|
|
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
|
|
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. */
|
package/infino/native.d.ts
CHANGED
|
@@ -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
|
|
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.
|
|
3
|
+
"version": "0.1.3",
|
|
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.
|
|
86
|
-
"infx-darwin-arm64": "0.1.
|
|
87
|
-
"infx-linux-x64-gnu": "0.1.
|
|
88
|
-
"infx-linux-arm64-gnu": "0.1.
|
|
89
|
-
"infx-linux-x64-musl": "0.1.
|
|
90
|
-
"infx-linux-arm64-musl": "0.1.
|
|
85
|
+
"infx-darwin-x64": "0.1.3",
|
|
86
|
+
"infx-darwin-arm64": "0.1.3",
|
|
87
|
+
"infx-linux-x64-gnu": "0.1.3",
|
|
88
|
+
"infx-linux-arm64-gnu": "0.1.3",
|
|
89
|
+
"infx-linux-x64-musl": "0.1.3",
|
|
90
|
+
"infx-linux-arm64-musl": "0.1.3"
|
|
91
91
|
},
|
|
92
92
|
"devDependencies": {
|
|
93
93
|
"@napi-rs/cli": "^2.18.0",
|