1.0.0-alpha.0 • Published 1 month ago

@builderbot-plugins/orama v1.0.0-alpha.0

Weekly downloads
-
License
ISC
Repository
github
Last release
1 month ago

Orama plugin

Is an Open source tool for Vector Database using for RAG and Retrieval Genration

INIT BD

const store = new Store({
    schema: {
        'name': "string",
        'lastname': "string",
        'age': "number"
    },
    recreate: true
})

await store.init([
    {
        age: 25,
        lastname: 'sola',
        name: 'juan'
    }
])

SEARCH

const hits = await store.search('juan', 1)
console.log(hits)

INSERT MORE DATA

/* stuff code */

const store = new Store({
    schema: {
        'name': "string",
        'lastname': "string",
        'age': "number"
    }
})

await store.init()

await store.upsert([{
    'name': "jose",
    'lastname': "foo",
    'age': 23
}])

AUTHOR: Elimleth