Local models v7

AIDB supports two kinds of local models — both run directly on your Postgres host without requiring an external API:

  • Default models — AIDB bundles a default variant of each supported model type and registers them automatically. No configuration is needed to start using them, though the model's files still download from HuggingFace the first time it's used — see Local model downloads.
  • Custom models — If you need a different model variant, a fine-tuned model, or a specific local path, you can register a custom version using aidb.create_model().

Local models run on one of two inference runtimes, Candle or llama.cpp. Day-to-day usage — aidb.create_model(), aidb.encode_text(), aidb.decode_text(), and so on — is identical either way; each model's provider below just notes which runtime it uses.

Default models

The following models are available in every AIDB installation without any configuration. See Model providers for what the provider column means:

Model nameProviderUse
bertbert_local (Candle)Text embeddings
clipclip_local (Candle)Multimodal embeddings (text and image)
t5t5_local (Candle)Text-to-text generation
llamallama_instruct_local (Candle)Text-to-text generation
bge-small-en-v1.5-f16llamacpp_embeddings (llama.cpp)Text embeddings
nomic-embed-text-v1.5-Q8_0llamacpp_embeddings (llama.cpp)Text embeddings
bge-m3-f16llamacpp_embeddings (llama.cpp)Text embeddings
qwen3-embedding-0.6b-Q8_0llamacpp_embeddings (llama.cpp)Text embeddings
qwen3-embedding-4b-Q8_0llamacpp_embeddings (llama.cpp)Text embeddings
qwen3.5-0.8b-Q8_0llamacpp_generate (llama.cpp)Text-to-text generation
llama-3.2-1b-instruct-Q8_0llamacpp_generate (llama.cpp)Text-to-text generation
dummydummyTesting and development (returns zeros)

Use them directly by name in any AIDB SQL function or pipeline step configuration:

-- Text embedding with the default BERT model
SELECT aidb.encode_text('bert', 'The quick brown fox');

-- Image embedding with the default CLIP model
SELECT aidb.encode_image('clip', pg_read_binary_file('/tmp/photo.jpg')::BYTEA);

-- Text generation with the default T5 model
SELECT aidb.decode_text('t5', 'Translate to French: Hello, world.');

-- Text embedding with a default llama.cpp embedding model
SELECT aidb.encode_text('bge-small-en-v1.5-f16', 'The quick brown fox');

-- Text generation with a default llama.cpp model
SELECT aidb.decode_text('qwen3.5-0.8b-Q8_0', 'Translate to French: Hello, world.');

Model providers

A provider tells aidb.create_model() which inference engine to use for a model. It isn't a SQL enum — it's the name of a Postgres foreign server registered for AIDB's model registry, matched against an adapter at model-creation time. List the providers registered in your installation, with their descriptions:

SELECT server_name, server_description FROM aidb.model_providers ORDER BY server_name;

AIDB's local providers, the runtime behind each, and what they're for:

ProviderRuntimeDescription
bert_localCandleSimple language model, ideal for encoding text.
clip_localCandleVision/text model, ideal for encoding text and images.
t5_localCandleIdeal for translation, summarization, and question answering.
llama_instruct_localCandleInstruction variants of Meta's family of large language models.
llamacpp_generatellama.cppLocal LLM inference via llama.cpp (GGUF format).
llamacpp_embeddingsllama.cppLocal text embeddings via llama.cpp (GGUF format).
dummyProvides fake data, ideal for testing.

aidb.model_providers also lists external API providers (OpenAI, NVIDIA NIM, Gemini, OpenRouter, and so on) — see External model connections for those. See aidb.model_providers for the full column reference.

Pick the provider that matches your model file format and task, then configure it with the matching config helper under Custom models — or use one of the ready-to-use default models above.

Custom models

Use aidb.create_model() to register a custom variant when you need a different model version, a fine-tuned model, or a specific local path:

SELECT aidb.create_model(
    name     => 'my_model',
    provider => '<provider>',
    config   => <config_helper>(...)
);
ParameterTypeDescription
nameTEXTA unique name for this model. Used to reference it in pipelines and SQL functions.
providerTEXTThe model provider. Determines which inference engine AIDB uses.
configJSONBProvider-specific configuration, built with a config helper function.

BERT, CLIP, T5, and Llama below run on Candle, each with its own config helper. llama.cpp (its own subsection, last) runs a separate runtime and doesn't have a config helper yet.

BERT

Use aidb.bert_config() to specify the HuggingFace model identifier, an optional revision, and an optional local cache directory:

SELECT aidb.create_model(
    'my_bert',
    'bert_local',
    config => aidb.bert_config('sentence-transformers/all-MiniLM-L6-v2')
);
ParameterTypeDefaultDescription
modelTEXTRequiredModel name or path (HuggingFace identifier).
revisionTEXTNULLModel revision or branch.
cache_dirTEXTNULLLocal directory for caching model files.

CLIP

Use aidb.clip_config() to configure a CLIP-based multimodal model for joint text and image embeddings:

SELECT aidb.create_model(
    'my_clip',
    'clip_local',
    config => aidb.clip_config('openai/clip-vit-base-patch32')
);
ParameterTypeDefaultDescription
modelTEXTRequiredModel name or path (HuggingFace identifier).
revisionTEXTNULLModel revision or branch.
cache_dirTEXTNULLLocal directory for caching model files.

T5

Use aidb.t5_config() to configure a T5 text-to-text model. T5 models support tasks like translation, summarization, and question answering depending on the variant:

SELECT aidb.create_model(
    'my_t5',
    't5_local',
    config => aidb.t5_config('google/flan-t5-base')
);
ParameterTypeDefaultDescription
modelTEXTRequiredModel name or path.
model_pathTEXTNULLExplicit local path to model weights (overrides model).
cache_dirTEXTNULLLocal directory for caching model files.

Llama

Use aidb.llama_config() to configure a Llama-family language model for text generation. Llama models support temperature, top-p sampling, context length, and other generation parameters:

SELECT aidb.create_model(
    'my_llama',
    'llama_instruct_local',
    config => aidb.llama_config(
        'meta-llama/Llama-3.2-3B-Instruct',
        temperature => 0.5
    )
);
ParameterTypeDefaultDescription
modelTEXTRequiredModel name or path.
cache_dirTEXTNULLLocal directory for caching model files.
model_pathTEXTNULLExplicit local path to model weights (overrides model).
temperatureDOUBLE PRECISIONNULLSampling temperature.
top_pDOUBLE PRECISIONNULLNucleus sampling threshold.
seedBIGINTNULLRandom seed for reproducible outputs.
Note

Local model files are downloaded from HuggingFace and cached on first use. The Postgres process must have network access and write access to the cache directory. For air-gapped environments, pre-download the model files and use model_path or cache_dir to point to the local copy.

llama.cpp

llama.cpp runs GGUF-format model files — a common distribution format for quantized, open-weight models — through two providers: llamacpp_generate for text generation and llamacpp_embeddings for text embeddings. Point either one at a GGUF file, downloaded from HuggingFace or already on disk. See Default models above for AIDB's pre-registered GGUF models; use the recipes below to register a different one.

llamacpp_generate

SELECT aidb.create_model(
    name => 'my_llamacpp_chat',
    provider => 'llamacpp_generate',
    config => jsonb_build_object(
        'local_path', '/var/lib/aidb/models/qwen2.5-3b-instruct-q4_k_m.gguf',
        'n_ctx', 4096,
        'temperature', 0.2
    )
);
ParameterTypeDefaultDescription
modelTEXTRequired unless local_path is setHuggingFace repo id, for example, Qwen/Qwen2-0.5B-Instruct-GGUF.
model_fileTEXTRequired unless local_path is setFilename of the .gguf inside the repo. For a split GGUF, name any one shard — every shard downloads and llama.cpp reassembles them.
revisionTEXTmainHuggingFace revision.
local_pathTEXTNULLAbsolute path to a local .gguf file. Overrides model/model_file/revision.
cache_dirTEXTNULLLocal directory for caching downloaded model files.
n_ctxINTEGER4096Context window, in tokens. Capped at the value the GGUF was trained with.
chat_templateTEXTNULLOverride the chat template baked into the GGUF.
temperatureDOUBLE PRECISION0.7Sampling temperature.
top_pDOUBLE PRECISION0.9Nucleus sampling threshold.
max_tokensINTEGER512Maximum tokens to generate.
seedBIGINTNULLRandom seed for reproducible outputs.
system_promptTEXTNULLSystem prompt prepended to every request.
repeat_penaltyREAL1.1Penalty applied to repeated tokens.
repeat_last_nINTEGER64Number of trailing tokens considered for the repeat penalty.
thinkingBOOLEANNULL (keeps tags)Controls <think> tag handling in the response: false strips them, true/unset keeps them.

llamacpp_generate is also the only provider that supports tools, tool_choice, and response_format for tool calling and structured output — see Tool calling and structured output.

llamacpp_embeddings

SELECT aidb.create_model(
    name => 'my_llamacpp_embed',
    provider => 'llamacpp_embeddings',
    config => jsonb_build_object(
        'model', 'nomic-ai/nomic-embed-text-v1.5-GGUF',
        'model_file', 'nomic-embed-text-v1.5.Q4_K_M.gguf',
        'revision', '0188c9bf409793f810680a5a431e7b899c46104c',
        'n_ctx', 2048,
        'normalize', true
    )
);
ParameterTypeDefaultDescription
modelTEXTRequired unless local_path is setHuggingFace repo id, for example, nomic-ai/nomic-embed-text-v1.5-GGUF.
model_fileTEXTRequired unless local_path is setFilename of the .gguf inside the repo. For a split GGUF, name any one shard — every shard downloads and llama.cpp reassembles them.
revisionTEXTmainHuggingFace revision.
local_pathTEXTNULLAbsolute path to a local .gguf file. Overrides model/model_file/revision.
cache_dirTEXTNULLLocal directory for caching downloaded model files.
n_ctxINTEGER2048Context window, in tokens. Capped at the value the GGUF was trained with.
poolingTEXTunspecifiedPooling strategy: unspecified (use the GGUF's own metadata), none, mean, cls, or last.
normalizeBOOLEANtrueL2-normalize output embedding vectors.
Note

llama.cpp doesn't have a config helper function yet — build config with jsonb_build_object() as shown above. It's also CPU-only today; there's no GPU offload option. See aidb.max_threads to control how many threads it (and the Candle runtime) can use.

Validating a model at creation

By default, aidb.create_model() validates the model as part of registration: it downloads and loads the model files and runs a small probe inference to confirm the model is functional before the registration commits. For local models this moves the (potentially large) download and load to creation time instead of first use.

If validation fails — for example, the model identifier doesn't exist on HuggingFace, a model_path is wrong, or the weights can't be loaded — the error is reported immediately and no model is registered.

-- Validated by default: downloads, loads, and probes the model now.
SELECT aidb.create_model('my_bert', 'bert_local',
    config => aidb.bert_config('sentence-transformers/all-MiniLM-L6-v2'));

Pass validate => false to register the model without downloading or loading it — useful to defer the download to first use, or to register models in an environment that doesn't have network access yet:

SELECT aidb.create_model('my_bert', 'bert_local',
    config    => aidb.bert_config('sentence-transformers/all-MiniLM-L6-v2'),
    validate  => false);

You can validate a model later — or re-check an existing one — with aidb.validate_model().

Local model downloads

When a local model is used for the first time (or any time its cache is missing or corrupt), AIDB downloads the model files from HuggingFace into the configured cache_dir. The downloader emits progress messages and automatically retries transient network failures.

Progress messages

For each file, AIDB emits a downloading line when the request starts and a complete line when it finishes. For multi-gigabyte files, a heartbeat line reports cumulative bytes and percent complete approximately every 30 seconds, so the session doesn't appear frozen during large downloads.

SELECT aidb.decode_text('t5', 'test');
Output
NOTICE:  [t5_local] loading t5-small (rev refs/pr/15) -> /var/.../snapshots/refs/pr/15
NOTICE:  [hf] downloading https://huggingface.co/t5-small/resolve/refs%2Fpr%2F15/config.json (expected: 1.2 KB)
NOTICE:  [hf] complete: https://huggingface.co/t5-small/resolve/refs%2Fpr%2F15/config.json (1.2 KB) in 0.9s
NOTICE:  [hf] downloading https://huggingface.co/t5-small/resolve/refs%2Fpr%2F15/model.safetensors (size unknown)
NOTICE:  [hf] downloading t5-small/model.safetensors: 115.4 MB / 230.8 MB (50.0%)
NOTICE:  [hf] downloading t5-small/model.safetensors: 216.4 MB / 230.8 MB (93.7%)
NOTICE:  [hf] complete: https://huggingface.co/t5-small/resolve/refs%2Fpr%2F15/model.safetensors (230.8 MB) in 83.5s

By default, these lines are sent to the client at NOTICE level. Use the aidb.download_log_level parameter to route them to the server log instead, or to suppress them entirely.

Retries and resume

A CDN that drops the connection partway through a multi-gigabyte download won't fail the request outright:

  • Each retry sends a Range header from wherever the previous attempt stopped, so progress accumulates across attempts instead of restarting from zero.
  • AIDB distinguishes "still receiving new bytes" from "zero progress" and only counts stalled attempts against aidb.download_max_attempts, with exponential backoff between attempts.
  • A Ctrl-C from psql lands between retries instead of waiting for the current request to time out.

The total number of attempts per file is capped by aidb.download_max_attempts (default 30).

Verification and self-heal

AIDB verifies downloaded files using the size and (when available) the SHA-256 hash advertised by HuggingFace, and writes a small sidecar file next to each completed download recording those values. On every cache hit AIDB rechecks the file size against the sidecar, so a file truncated after the original download is caught before it's used.

If a cached file is detected as corrupt at model-load time, AIDB purges the affected snapshot and re-downloads it once automatically.

Using a registered model

Once registered, a model is referenced by its name in any AIDB function. Custom and default models are interchangeable:

-- Use a custom BERT model for embedding
SELECT aidb.encode_text('my_bert', 'Hello world');

-- Use a custom BERT model in a pipeline step
SELECT aidb.create_pipeline(
    name => 'my_pipeline',
    source => 'my_source_table',
    source_key_column => 'id',
    source_data_column => 'content',
    step_1 => 'KnowledgeBase',
    step_1_options => aidb.knowledge_base_config(model => 'my_bert', data_format => 'Text')
);

See the Models reference for full parameter details on all model config helper functions. Some functions (decode_text(), summarize_text()) also accept a per-call configuration override — see Configuration model for creation-time vs. call-time settings.

For a list of HuggingFace model variants that have been tested and verified to work with AIDB's local providers, see Support matrix.

Troubleshooting

llama.cpp model loading and inference issues

If a llamacpp_generate or llamacpp_embeddings model fails to load, times out, or otherwise behaves unexpectedly, AIDB's own error messages may not have enough detail to diagnose it. Enable llama.cpp's native diagnostic logging to see its own output — GGUF metadata, tensor shapes, and backend/model initialization — in the server log:

aidb.enable_llamacpp_logs = true

This parameter is read once at extension initialization, so restart Postgres for the change to take effect — SET and pg_reload_conf() alone won't apply it. See aidb.enable_llamacpp_logs for the full parameter reference.

It's off by default because llama.cpp's native output is verbose (hundreds of lines per model load), so turn it on only while investigating an issue, then turn it back off. It applies only to llama.cpp models; Candle-based models (bert_local, clip_local, t5_local, llama_instruct_local) are unaffected.