This guide assumes you’ve already installed nrvna-ai. If not, install it first.
Get a model
Download any GGUF model from HuggingFace and place it in./models/:
NRVNA_MODELS_DIR to point to your existing models directory:
Start the daemon
Launch nrvnad
Start the daemon in interactive mode (recommended for first run):This shows a dashboard with your models and workspaces. Pick a number to get started.Alternatively, start directly with a specific model and workspace:Leave this running in your terminal.
Submit a job
In a new terminal, submit your first job:You’ll get a job ID back immediately:The job is now processing in the background.
Submit and wait in one line
Pipe the job ID directly toflw:
Batch processing
Submit multiple jobs at once - they’ll process in parallel:Each
wrk call returns immediately with a job ID. The daemon processes all jobs concurrently.How the filesystem works
Inspect the workspace to see jobs moving through states:You can inspect jobs with standard Unix tools:
Common patterns
Agent loop
Feed results back as prompts:Fan-out / fan-in
Parallelize, then synthesize:Multi-model routing
Run different models for different tasks:Process images
Submit jobs with image inputs:Next steps
Advanced patterns
See ADVANCED.md for batch, loops, and routing
Architecture
See ARCHITECTURE.md for internals and threading
wrk options
Run
wrk --help to see all submission optionsflw options
Run
flw --help to see all collection options