Quackformers: A DuckDB Extension for LLM-Related Functionality
May 2, 2026 · View on GitHub
Quackformers, a DuckDB extension for LLM-related tasks. For embedding and RAG-like features on DuckDB:
LOAD 'build/debug/quackformers.duckdb_extension'; -- IF BUILDING LOCALLY
-- IMPORTING FROM DUCKDB COMMUNITY
INSTALL quackformers fROM community;
LOAD quackformers;
-- IMPORTING FROM GITHUB REPO
LOAD quackformers FROM 'https://github.com/martin-conur/quackformers';
CREATE TEMP TABLE QUESTIONS(random_questions) AS
VALUES
('What is the capital of France?'),
('How does a car engine work?'),
('What is the tallest mountain in the world?'),
('How do airplanes stay in the air?'),
('What is the speed of light?')
;
SELECT embed(RANDOM_QUESTIONS)::FLOAT[384] embedded_questions FROM QUESTIONS;
Example: RAG with Just DUCKDB
INSTALL quackformers FROM community;
LOAD quackformers;
INSTALL vss;
LOAD vss;
CREATE TABLE vector_table AS
SELECT *, embed(text)::FLOAT[384] as embedded_text FROM read_csv_auto('some/path/to/file/filename.csv');
CREATE INDEX hnsw_index on vector_table USING HNSW (embedded_text);
-- GETTING MOST IMPORTANT CHUNKS BASED ON QUESTION
SELECT text FROM vector_table
ORDER BY array_distance(embedded_text, embed('Some question related to the file?')::FLOAT[384])
LIMIT 5;
SELECT text FROM vector_table
ORDER BY array_distance(embedded_text, embed('Another question related to the file?')::FLOAT[384])
LIMIT 5;
For more examples, check out the examples folder.
If building locally or calling from repo, you should use the -unsigned tag.
duckdb -unsigned
Features:
- No DuckDB build required
- No C++ or C code required
- CI/CD chain preconfigured
- (Coming soon) Works with community extensions
Cloning
Clone the repo with submodules
git clone --recurse-submodules git@github.com:martin-conur/quackformers.git
Dependencies
In principle, these extensions can be compiled with the Rust toolchain alone. However, this template relies on some additional tooling to make life a little easier and to be able to share CI/CD infrastructure with extension templates for other languages:
- Python3
- Python3-venv
- Make
- Git
Installing these dependencies will vary per platform:
- For Linux, these come generally pre-installed or are available through the distro-specific package manager.
- For MacOS, homebrew.
- For Windows, chocolatey.
Building
After installing the dependencies, building is a two-step process. Firstly run:
make configure
This will ensure a Python venv is set up with DuckDB and DuckDB's test runner installed. Additionally, depending on configuration, DuckDB will be used to determine the correct platform for which you are compiling.
Then, to build the extension run:
make debug
This delegates the build process to cargo, which will produce a shared library in target/debug/<shared_lib_name>. After this step,
a script is run to transform the shared library into a loadable extension by appending a binary footer. The resulting extension is written
to the build/debug directory.
To create optimized release binaries, simply run make release instead.
CI/CD Automatic Builds
The repository is configured with GitHub Actions to automatically build extension binaries for multiple platforms on every push to the main branch.
Built extensions are automatically stored in the builds/ directory, organized by version and architecture:
builds/
├── v1.3.2/
│ ├── linux_amd64/
│ ├── linux_arm64/
│ ├── osx_amd64/
│ ├── osx_arm64/
│ └── windows_amd64/
└── README.md
This means you can easily:
- Access pre-built binaries for different platforms
- Test extensions across architectures
- Distribute binaries to users
The CI workflow builds for all supported platforms except: wasm_mvp, wasm_eh, wasm_threads, linux_amd64_musl, and windows_amd64_mingw.
Testing
This extension uses the DuckDB Python client for testing. This should be automatically installed in the make configure step.
The tests themselves are written in the SQLLogicTest format, just like most of DuckDB's tests. A sample test can be found in
test/sql/<extension_name>.test. To run the tests using the debug build:
make test_debug
or for the release build:
make test_release
Version switching
Switching to different DuckDB versions is now automated with a single command:
make set-version VERSION=v1.4.0
This command will automatically:
- Update the
Makefile(TARGET_DUCKDB_VERSION, DUCKDB_TEST_VERSION) - Update
Cargo.toml(duckdb and libduckdb-sys dependencies) - Update
.github/workflows/MainDistributionPipeline.yml(CI workflow versions) - Update
Cargo.lock(via cargo update)
After changing the version, rebuild and test:
make clean_all
make configure
make debug
make test_debug
Example: To switch to DuckDB v1.3.2:
make set-version VERSION=v1.3.2
make clean_all && make configure && make debug && make test_debug
Known issues
This is a bit of a footgun, but the extensions produced by this template may (or may not) be broken on windows on python3.11 with the following error on extension load:
IO Error: Extension '<name>.duckdb_extension' could not be loaded: The specified module could not be found
This was resolved by using python 3.12
Roadmap
Here are the planned features and improvements for Quackformers:
-
Faster Embedding Implementation ✅
- Currently, embeddings are generated row by row. The goal is to implement a more efficient method to embed entire columns or chunks at once.
-
Jina Integration ✅
- Add support for Jina-based embedding functionality. This feature is currently a work in progress (WIP) and will be available soon.
-
Return Arrays Instead of Strings ✅
- Modify the output format to return arrays directly instead of strings for better usability and performance.
-
Document Splitting Functions
Two table-valued functions for splitting text into chunks, designed to compose naturally withembed():-
split(text)— splits raw text coming from any source (a column, a subquery, another process):SELECT embed(chunk_text) FROM split(my_raw_text_column, chunk_size => 256); -
read_split(path)— reads a file from disk and splits it in one step:SELECT embed(chunk_text) FROM read_split('docs/readme.md');
Both return:
chunk_index,chunk_text,sourceSupported formats:
- Plain text (
.txt) - Markdown (
.md) - PDF (
.pdf)
-
-
Dynamic Device Selection (Metal / CPU)
Automatically use Metal GPU on macOS and fall back to CPU on any other platform or if GPU init fails — with no configuration required. Jina benefits most from this due to its larger matrix sizes, but all embedding functions gain it automatically. -
New Embedding Models
Expand beyond the current BERT (MiniLM) and Jina models across three categories:-
Faster / better English — drop-in BERT-architecture models with significantly better quality at the same speed and size as MiniLM:
-
BAAI/bge-small-en-v1.5(384 dims) -
thenlper/gte-small(384 dims) -
jinaai/jina-embeddings-v2-small-en— faster Jina, same architecture already implemented
-
-
Modern architectures — newer model designs with longer context and better benchmarks:
- ModernBERT (
answerdotai/ModernBERT-base) — RoPE positional embeddings, 8192 token context, trained on 2T tokens, Candle support available -
nomic-ai/nomic-embed-text-v1.5— Matryoshka embeddings (truncatable to 768/512/256/128 dims)
- ModernBERT (
-
Multilingual:
-
intfloat/multilingual-e5-small— 100+ languages, BERT architecture (drop-in) -
BAAI/bge-m3— 100+ languages, 8192 context, dense + sparse + multi-vector retrieval modes
-
-
Open Discussion
If you have ideas for custom embedding models or additional features you'd like to see in Quackformers, feel free to open a discussion or create an issue in the repository. We welcome your feedback and contributions!