GitHub 项目简介: 🌌 A complete search engine and RAG pipeline in your browser, server or edge network with support for full-text, vector, and hybrid search in less than 2kb.
README: You can install Orama using `npm`, `yarn`, `pnpm`, `bun`: ```sh npm i @orama/orama ``` Or import it directly in a browser module: ```html <html> <body> <script type="module"> impo…
README: Orama is quite simple to use. The first thing to do is to create a new database instance and set an indexing schema: ```js import { create, insert, remove, search, searchVector }…
README: Orama supports both vector and hybrid search by just setting `mode: 'vector'` when performing search. To perform this kind of search, you'll need to provide [text embeddings](http…