1.1.0 • Published 10 months ago

vectordbnode v1.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
10 months ago

Vectogres Node.js Client

This is the Node.js client for Vectogres.

Installation

npm install vectogres

Usage

import { Vectogres } from "vectogres";

const db = new Vectogres();

const collection = db.create.collection("my_collection");

await collection.records.insert([
  {
    content: "The quick brown fox jumps over the lazy dog.",
    payload: {
      source: "example.com",
    },
  },
]);

await collection.records.search({ query: "fox and dog", limit: 1 });

// [
//   {
//     id: 1,
//     content: "The quick brown fox jumps over the lazy dog.",
//     embedding: [0.1, 0.2, 0.3]
//     payload: { source: "example.com" },
//     metadata: {
//       model: "all-MiniLM-L6-v2",
//       timestamp: "2024-09-20T14:56:36.949030+00:00",
//     },
//     distance: 0.9344318091942762,
//   },
// ];

License

MIT

1.1.0

10 months ago

1.0.8

11 months ago

1.0.7

11 months ago

1.0.6

11 months ago

1.0.5

11 months ago

1.0.4

11 months ago

1.0.3

11 months ago

1.0.2

11 months ago

1.0.1

11 months ago

1.0.0

11 months ago