
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
@absolutejs/absolute-rag-sqlite
Advanced tools
SQLite adapter package for AbsoluteJS RAG workflows with optional native vec0 acceleration
SQLite adapter package for AbsoluteJS RAG workflows.
This package is not the RAG feature itself. Core @absolutejs/absolute owns the
workflow model, hooks, plugin protocol, and fallback behavior. This package owns
SQLite-specific backend ergonomics and optional native sqlite-vec acceleration.
bun add @absolutejs/absolute-rag-sqlite
The optional native sqlite-vec path currently vendors upstream binaries for:
Unsupported targets stay on the owned fallback path until a backend package adds support for them.
createSQLiteRAGStore(...): SQLite-backed RAG storecreateSQLiteRAGCollection(...): convenience wrapper that creates the store and collection togethercreateSQLiteRAG(...): one-shot SQLite RAG bundle with store, collection, and native support helpersgetSQLiteRAGNativeSupport(): inspect whether the platform sqlite vec package is availablesummarizeSQLiteRAGSupport(...): turn store diagnostics into an actionable backend summaryimport { createSQLiteRAG, ragPlugin } from "@absolutejs/absolute-rag-sqlite";
const rag = createSQLiteRAG({
storeOptions: {
path: "./rag.sqlite",
native: {
mode: "vec0",
},
},
});
app.use(
ragPlugin({
path: "/rag",
collection: rag.collection,
}),
);
sqlite-vec is treated as an optional accelerator.
native.mode is set to "vec0", the store can activate native vec0 search.You can inspect what happened at runtime:
const support = rag.getNativeSupport();
console.log(support.actionableMessage);
bun run vendor:binaries
bun run check
bun run publish:all
The vendoring script verifies upstream checksums before copying binaries into the platform package directories.
This package should stay replaceable.
@absolutejs/absolute-rag-pgvector should fit the same adapter contract.FAQs
SQLite adapter package for AbsoluteJS RAG workflows with optional native vec0 acceleration
We found that @absolutejs/absolute-rag-sqlite demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.