0.4.20 • Published 12 days ago

vectordb v0.4.20

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
12 days ago

LanceDB

A JavaScript / Node.js library for LanceDB.

Installation

npm install vectordb

This will download the appropriate native library for your platform. We currently support:

  • Linux (x86_64 and aarch64)
  • MacOS (Intel and ARM/M1/M2)
  • Windows (x86_64 only)

We do not yet support musl-based Linux (such as Alpine Linux) or aarch64 Windows.

Usage

Basic Example

const lancedb = require('vectordb');
const db = await lancedb.connect('data/sample-lancedb');
const table = await db.createTable("my_table",
      [{ id: 1, vector: [0.1, 1.0], item: "foo", price: 10.0 },
      { id: 2, vector: [3.9, 0.5], item: "bar", price: 20.0 }])
const results = await table.search([0.1, 0.3]).limit(20).execute();
console.log(results);

The examples folder contains complete examples.

Development

To build everything fresh:

npm install
npm run build

Then you should be able to run the tests with:

npm test

Fix lints

To run the linter and have it automatically fix all errors

npm run lint -- --fix

To build documentation

npx typedoc --plugin typedoc-plugin-markdown --out ../docs/src/javascript src/index.ts
0.4.20

12 days ago

0.4.19

14 days ago

0.4.18

21 days ago

0.4.16

2 months ago

0.4.15

2 months ago

0.4.14

2 months ago

0.4.13

2 months ago

0.4.12

3 months ago

0.4.11

3 months ago

0.4.10

3 months ago

0.4.9

3 months ago

0.4.8

4 months ago

0.4.7

4 months ago

0.4.6

4 months ago

0.4.5

4 months ago

0.4.3

4 months ago

0.4.2

5 months ago

0.4.1

5 months ago

0.4.0

5 months ago

0.3.11

5 months ago

0.3.10

5 months ago

0.3.9

6 months ago

0.3.6

7 months ago

0.3.5

7 months ago

0.3.8

6 months ago

0.3.7

6 months ago

0.3.2

7 months ago

0.3.3

7 months ago

0.1.10

11 months ago

0.1.11

11 months ago

0.1.12

10 months ago

0.1.13

10 months ago

0.1.14

10 months ago

0.1.15

10 months ago

0.3.0

8 months ago

0.2.1

9 months ago

0.1.2

12 months ago

0.2.0

9 months ago

0.1.16

10 months ago

0.1.8

11 months ago

0.2.6

8 months ago

0.1.17

10 months ago

0.1.7

11 months ago

0.1.18

10 months ago

0.1.19

10 months ago

0.2.3

9 months ago

0.1.4

12 months ago

0.3.1

7 months ago

0.2.2

9 months ago

0.1.3

12 months ago

0.2.5

8 months ago

0.1.12-beta1

11 months ago

0.1.6

11 months ago

0.1.5-beta

12 months ago

0.2.4

9 months ago

0.1.5

12 months ago

0.1.1

1 year ago

0.1.0-linux

1 year ago

0.1.0

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1-security

1 year ago

0.0.1

1 year ago