Bronze
Back the work
$10 / month
- Your name on our supporters list
- A vote on what we build next
- A thank you in the build log
Open software
A free Python toolbox of the patterns we proved on one small AI desktop. Search your own files, test models, fine-tune them, and ship them. Take only the parts you need.
fieldkit
fieldkit is a free box of Python tools for building with AI. We made it while doing real AI research on one small desktop, the NVIDIA DGX Spark, and packed in every pattern that worked. You do not have to take the whole box. Pull in just the one part you need and leave the rest.
The pieces cover the whole job, end to end:
There are smaller helpers too, for drawing charts, running notebooks, and keeping a tidy record of every experiment you try.
Every tool here ran on a real desktop doing real work, not in a slide deck. The same kit built and shipped our open models. So when you reach for a piece, you are reaching for something that already earned its keep.
pip install fieldkit
# Will this model fit on the desktop, with this much context?
# fieldkit does the memory math and tells you straight.
fieldkit feasibility llama-3.1-70b --ctx 4096 --batch 32 --dtype fp8
from fieldkit.nim import NIMClient
from fieldkit.rag import Document, Pipeline
# Talk to a model running on your own machine, search your notes,
# then answer using only what was found.
with NIMClient(base_url="http://localhost:8000/v1",
model="meta/llama-3.1-8b-instruct") as gen, \
Pipeline(embed_url="http://localhost:8001/v1",
pgvector_dsn="postgresql://spark:spark@localhost:5432/vectors",
generator=gen) as pipe:
pipe.ensure_schema()
pipe.ingest([Document(id=1, text="The DGX Spark has 128 GB of memory")])
print(pipe.ask("How much memory does the Spark have?")["answer"])
Back this work with a monthly tier. Your support moves your requests up the list, and Gold or Platinum earns a badge on the roadmap item you back.
Back the work
$10 / month
Get a say
$25 / month
Move it up the list
$50 / month
Shape the roadmap
$100 / month
Need something specific? Send an enquiry from the roadmap.

Offline patent reasoning in ready-to-run files, built with the NeMo toolkit. Nothing leaves your desktop.

Real notes from doing AI research on one desktop. The NVIDIA DGX Spark is a small machine with huge power (petascale means it runs about a quadrillion math steps a second), so you can push local AI further with no cloud needed. Every lesson is backed by code that runs.

I ran my first model on a small computer on my desk. 52 milliseconds to the first word, no cloud, no per-use bill. It felt like a local function, not a service.