Pipelines API reference v7

This page covers the full public API for AI pipelines: the types and enums used across the API, the views for inspecting pipeline state, the core CRUD and execution functions, and the configuration helper functions for pipeline steps and vector indexes. For model configuration helpers, see the Models reference.

Types

aidb.PipelineAutoProcessingMode

Controls how a pipeline automatically processes new or changed data.

CREATE TYPE PipelineAutoProcessingMode AS ENUM (
    'Live',
    'Background',
    'Disabled'
);
ValueDescription
LiveProcesses new data immediately as it arrives, using Postgres triggers.
BackgroundContinuously processes data in the background using Postgres workers.
DisabledNo automated processing. Use aidb.run_pipeline() to trigger manually.

aidb.PipelineDataFormat

Specifies the format of source data the pipeline processes.

CREATE TYPE PipelineDataFormat AS ENUM (
    'Text',
    'Image',
    'Pdf'
);
ValueDescription
TextPlain text data.
ImageImage data (bytes).
PdfPDF documents.

aidb.PipelineSourceType

Indicates the type of data source a pipeline reads from.

CREATE TYPE PipelineSourceType AS ENUM (
    'Table',
    'Volume',
    'Empty'
);
ValueDescription
TableA Postgres table or view.
VolumeA PGFS storage volume.
EmptyNo source; the pipeline generates its own data.

aidb.PipelineDestinationType

Indicates the type of destination a pipeline writes to.

CREATE TYPE PipelineDestinationType AS ENUM (
    'Table',
    'Volume',
    'Empty'
);
ValueDescription
TableA Postgres table.
VolumeA PGFS storage volume.
EmptyNo destination; output is discarded.

aidb.PipelineStepOperation

Defines the operation performed by a pipeline step.

CREATE TYPE PipelineStepOperation AS ENUM (
    'ChunkText',
    'SummarizeText',
    'ParseHtml',
    'ParsePdf',
    'PerformOcr',
    'KnowledgeBase',
    'PdfToImage',
    'SemanticKB'
);
ValueDescription
ChunkTextSplits text into smaller chunks.
SummarizeTextSummarizes text using a language model.
ParseHtmlExtracts text content from HTML.
ParsePdfExtracts text or images from PDFs.
PerformOcrRuns optical character recognition on images.
KnowledgeBaseComputes and stores embeddings in a knowledge base.
PdfToImageConverts PDF pages to images.
SemanticKBIndexes schema metadata into a semantic knowledge base.

aidb.PipelineStatus

Represents the current processing state of a pipeline.

CREATE TYPE PipelineStatus AS ENUM (
    'Stale',
    'Processing',
    'UpToDate',
    'NoResults',
    'Failed',
    'Unknown',
    'PartialErrors',
    'BlockingErrors'
);
ValueDescription
StaleSource data has changed and the pipeline needs to run.
ProcessingThe pipeline is currently executing.
UpToDateAll source data has been processed successfully.
NoResultsProcessing completed but produced no output.
FailedThe last execution failed.
UnknownStatus can't be determined.
PartialErrorsSome records failed with record-level errors. The pipeline is otherwise operational.
BlockingErrorsA pipeline-level error stopped processing. Resolve the issue, re-run, then clear the entry.

aidb.ErrorBlocking

Categorizes how a logged error affects pipeline processing. Two dimensions: scope (record vs pipeline) and temporality (temporary vs permanent).

CREATE TYPE ErrorBlocking AS ENUM (
    'RecordTemporary',
    'RecordPermanent',
    'PipelineTemporary',
    'PipelinePermanent'
);
ValueDescription
RecordTemporaryTransient record-level failure. Other records keep processing. Currently fires only for model rate-limit errors.
RecordPermanentPermanent record-level failure (for example, bad input data). Other records keep processing.
PipelineTemporaryTransient pipeline-level failure (for example, network timeout, service outage). Blocks the step; may resolve on retry.
PipelinePermanentPermanent pipeline-level failure (for example, deleted model, invalid config). Blocks the step.

aidb.DistanceOperator

Specifies the distance metric used for vector similarity search.

CREATE TYPE DistanceOperator AS ENUM (
    'L2',
    'InnerProduct',
    'Cosine',
    'L1',
    'Hamming',
    'Jaccard'
);
ValueDescription
L2Euclidean distance.
InnerProductInner product.
CosineCosine similarity.
L1L1 (Manhattan) distance.
HammingHamming distance.
JaccardJaccard distance.

Domains

aidb.pipeline_name_50

A TEXT domain enforcing that pipeline names are no longer than 50 characters.

aidb.background_sync_interval

An INTERVAL domain enforcing that background sync intervals are between 1 second and 2 days (inclusive).


Views

aidb.pipelines

Also accessible as aidb.pipes. Lists all registered pipelines and their configuration, including source, destination, processing mode, and step definitions.

ColumnTypeDescription
idintegerInternal pipeline identifier.
nametextName of the pipeline.
source_typeaidb.PipelineSourceTypeWhether the source is a table or volume.
source_schematextSchema of the source table.
sourcetextName of the source table or volume.
source_key_columntextColumn used as the unique key in the source.
source_data_columntextColumn containing the data to process.
destination_typeaidb.PipelineDestinationTypeWhether the destination is a table or volume.
destination_schematextSchema of the destination table.
destinationtextName of the destination table or volume.
destination_key_columntextKey column in the destination table.
destination_data_columntextColumn in the destination where processed data is written.
stepsjsonbOrdered array of pipeline step definitions.
auto_processingaidb.PipelineAutoProcessingModeAuto-processing mode.
batch_sizeintegerNumber of records processed per batch.
background_sync_intervalintervalInterval between executions in background mode.
owner_roletextPostgres role that owns this pipeline.

Example

SELECT name, source, destination, auto_processing FROM aidb.pipelines;

aidb.pipeline_metrics

Also accessible as aidb.pipem. Shows current processing statistics for each pipeline.

ColumnTypeDescription
pipelinetextName of the pipeline.
auto processingtextCurrent auto-processing mode.
table: unprocessed rowsbigintFor table sources: number of rows not yet processed.
volume: scans completedbigintFor volume sources: number of full scans completed.
count(source records)bigintTotal number of records in the source.
count(destination records)bigintTotal number of records in the destination.
StatustextCurrent pipeline status.
count(record errors)bigintNumber of record-level errors logged for this pipeline (RecordTemporary plus RecordPermanent).
count(blocking errors)bigintNumber of pipeline-level errors logged for this pipeline (PipelineTemporary plus PipelinePermanent).

Example

SELECT * FROM aidb.pipeline_metrics;
Output
       pipeline       | auto processing | table: unprocessed rows | volume: scans completed | count(source records) | count(destination records) |  Status  | count(record errors) | count(blocking errors)
----------------------+-----------------+-------------------------+-------------------------+-----------------------+----------------------------+----------+----------------------+------------------------
 pipeline__7471a      | Background      |                       0 |                         |                     5 |                          5 | UpToDate |                    0 |                      0
 pipeline__7471b      | Background      |                       0 |                         |                     5 |                          5 | UpToDate |                    0 |                      0
 animal_facts_kb      | Disabled        |                       0 |                         |                    99 |                        372 | UpToDate |                    0 |                      0
 animal_facts_kb_bert | Disabled        |                       0 |                         |                    99 |                        372 | UpToDate |                    0 |                      0
 mpkb_pipe_int        | Disabled        |                       0 |                         |                     2 |                          4 | UpToDate |                    0 |                      0
 mpkb_pipe_text       | Disabled        |                       0 |                         |                     2 |                          4 | UpToDate |                    0 |                      0
(6 rows)

Functions

aidb.create_pipeline

Creates a new pipeline with a source, up to 10 sequential processing steps, and an optional destination.

Parameters

ParameterTypeDefaultDescription
nameTEXTRequiredName of the pipeline. Max 50 characters.
sourceTEXTRequiredName of the source table or volume.
step_1aidb.PipelineStepOperationRequiredOperation for the first pipeline step.
source_key_columnTEXTNULLUnique key column in the source table.
source_data_columnTEXTNULLColumn containing the data to process.
destinationTEXTNULLName of the destination table or volume.
auto_processingaidb.PipelineAutoProcessingModeNULLAuto-processing mode.
batch_sizeINTNULLNumber of records to process per batch.
background_sync_intervalINTERVALNULLInterval between background executions. Must be between 1 second and 2 days.
owner_roleTEXTNULLRole to own and execute this pipeline.
step_1_optionsJSONBNULLConfiguration for step 1 (use the appropriate step config helper). Any step can also set intermediate_destination here to persist its output — see Intermediate storage.
step_2step_10aidb.PipelineStepOperationNULLOperation for steps 2–10.
step_2_optionsstep_10_optionsJSONBNULLConfiguration for steps 2–10.

Returns

ColumnTypeDescription
nametextName of the created pipeline.
destination_typetextType of the pipeline destination.
destination_schematextSchema of the destination.
destinationtextName of the destination.
destination_key_columntextKey column in the destination.
destination_data_columntextData column in the destination.

Example

-- Single-step pipeline: chunk text from a table into a destination table
SELECT aidb.create_pipeline(
    name                => 'my_chunker',
    source              => 'source_docs',
    source_key_column   => 'id',
    source_data_column  => 'body',
    destination         => 'chunked_docs',
    step_1              => 'ChunkText',
    step_1_options      => aidb.chunk_text_config(200, 250, 25),
    auto_processing     => 'Live'
);

-- Multi-step pipeline: parse PDF, then embed into a knowledge base
SELECT aidb.create_pipeline(
    name                => 'pdf_to_kb',
    source              => 'pdf_volume',
    destination         => 'my_kb',
    step_1              => 'ParsePdf',
    step_1_options      => aidb.pdf_parse_config(),
    step_2              => 'KnowledgeBase',
    step_2_options      => aidb.knowledge_base_config('my_model', 'Text'),
    auto_processing     => 'Background',
    background_sync_interval => '60 seconds'
);

aidb.update_pipeline

Updates the auto-processing settings for an existing pipeline.

Parameters

ParameterTypeDefaultDescription
nameTEXTRequiredName of the pipeline to update.
auto_processingaidb.PipelineAutoProcessingModeNULLNew auto-processing mode.
batch_sizeINTNULLNew batch size.
background_sync_intervalINTERVALNULLNew background sync interval.

Example

SELECT aidb.update_pipeline('my_chunker', auto_processing => 'Background', background_sync_interval => '5 minutes');

aidb.delete_pipeline

Deletes a pipeline and its configuration. Doesn't delete the source or destination tables.

Parameters

ParameterTypeDefaultDescription
nameTEXTRequiredName of the pipeline to delete.

Example

SELECT aidb.delete_pipeline('my_chunker');

aidb.run_pipeline

Manually triggers a pipeline to execute immediately, regardless of its auto_processing mode.

Parameters

ParameterTypeDefaultDescription
pipeline_nameTEXTRequiredName of the pipeline to run.

Example

SELECT aidb.run_pipeline('my_chunker');

aidb.get_pipeline_metrics

Returns current processing statistics for a pipeline.

Parameters

ParameterTypeDefaultDescription
nameTEXTRequiredName of the pipeline.

Returns

ColumnTypeDescription
nametextName of the pipeline.
auto_processingtextCurrent auto-processing mode.
count_eventsbigintFor table sources: number of unprocessed change events.
count_sourcebigintTotal records in the source (for table sources).
count_known_objectsbigintTotal known objects (for volume sources).
last_full_run_idbigintID of the last completed full scan (for volume sources).
count_destinationbigintTotal records in the destination.
statustextCurrent pipeline status.
count_errors_recordbigintNumber of record-level errors logged for this pipeline (RecordTemporary plus RecordPermanent).
count_errors_pipelinebigintNumber of pipeline-level errors logged for this pipeline (PipelineTemporary plus PipelinePermanent).

Example

SELECT * FROM aidb.get_pipeline_metrics('my_chunker');

Error log functions

Functions in this group manage the per-pipeline error log table. See Error log for the end-to-end workflow.

aidb.get_error_logs

Returns rows from a pipeline's error log table, optionally filtered by source record, step, or error category. Results are ordered by failed_at DESC, id DESC.

Parameters

ParameterTypeDefaultDescription
p_pipeline_nameTEXTRequiredName of the pipeline whose error log to query.
p_source_idTEXTNULLFilter to errors for a single source record.
p_pipeline_stepSMALLINTNULLFilter to errors at a single pipeline step.
p_error_categoryaidb.ErrorBlockingNULLFilter to a single error category.
p_limitINTEGERNULLMaximum rows to return. Must be non-negative when set.
p_offsetINTEGER0Rows to skip. Must be non-negative.

Raises an exception if the pipeline doesn't exist. Returns an empty result set if the pipeline's error log table is missing (legacy pipelines created before 7.2.0 upgrade into the table automatically).

Returns

ColumnTypeDescription
idbigintError log entry ID.
source_idtextSource record ID. NULL for pipeline-level errors.
part_idsbigint[]Hierarchical part path (for example, {0, 2} = page 0, chunk 2).
pipeline_stepsmallintStep number (1 to 10) where the error occurred.
step_operationaidb.PipelineStepOperationOperation that failed.
error_messagetextFull error message.
error_categoryaidb.ErrorBlockingError category.
failed_attimestamptzWhen the error was first logged.
retry_countintegerNumber of times this entry has been retried.
last_retry_attimestamptzWhen the most recent retry ran. NULL until the first retry.

Example

SELECT * FROM aidb.get_error_logs('my_pipeline');

-- Errors for a specific source record
SELECT * FROM aidb.get_error_logs('my_pipeline', p_source_id => 'doc_42');

-- Blocking errors at step 2
SELECT * FROM aidb.get_error_logs(
    'my_pipeline',
    p_pipeline_step  => 2::SMALLINT,
    p_error_category => 'PipelinePermanent'
);

aidb.clear_error_logs

Deletes the specified entries from a pipeline's error log table and returns the count of rows actually removed.

Parameters

ParameterTypeDefaultDescription
p_pipeline_nameTEXTRequiredName of the pipeline whose error log to clear.
p_error_idsBIGINT[]RequiredIDs from aidb.get_error_logs to remove. Missing IDs are skipped silently.

Raises an exception if the pipeline doesn't exist.

Returns

BIGINT — number of rows deleted.

Example

SELECT aidb.clear_error_logs('my_pipeline', ARRAY[1, 3, 7]);

-- Clear by filter via composition
SELECT aidb.clear_error_logs(
    'my_pipeline',
    ARRAY(SELECT id FROM aidb.get_error_logs(
        'my_pipeline',
        p_pipeline_step  => 1::SMALLINT,
        p_error_category => 'RecordPermanent'
    ))
);

aidb.get_error_log_summary

Returns error counts grouped by (pipeline_step, step_operation, error_category) for a single pipeline. One row per combination that has at least one error.

Parameters

ParameterTypeDefaultDescription
p_pipeline_nameTEXTRequiredName of the pipeline to summarize.

Raises an exception if the pipeline doesn't exist. Returns an empty result set if the pipeline's error log table is missing.

Returns

ColumnTypeDescription
pipeline_stepsmallintStep number.
step_operationaidb.PipelineStepOperationOperation at that step.
error_categoryaidb.ErrorBlockingError category.
error_countbigintNumber of errors in this group.
latest_failed_attimestamptzMost recent failed_at in this group.

Example

SELECT * FROM aidb.get_error_log_summary('my_pipeline');

-- Total error count
SELECT sum(error_count) FROM aidb.get_error_log_summary('my_pipeline');

aidb.get_all_error_summaries

Returns the same row shape as aidb.get_error_log_summary with pipeline_name prepended, rolled up across every pipeline. Pipelines with zero errors, or whose error log table is missing, are omitted.

Parameters

None.

Returns

ColumnTypeDescription
pipeline_nametextPipeline name.
pipeline_stepsmallintStep number.
step_operationaidb.PipelineStepOperationOperation at that step.
error_categoryaidb.ErrorBlockingError category.
error_countbigintNumber of errors in this group.
latest_failed_attimestamptzMost recent failed_at in this group.

Example

SELECT pipeline_name, sum(error_count) AS total_errors
FROM aidb.get_all_error_summaries()
GROUP BY pipeline_name;

aidb.requeue_pipeline_errors

Introduced in 7.5.0. Deletes the specified record-level error log entries and marks their source records dirty on the pipeline's state surface. The call itself does no processing; the next normal pipeline run re-processes the requeued records. See Requeuing failed records for the workflow.

Parameters

ParameterTypeDefaultDescription
p_pipeline_nameTEXTRequiredName of the pipeline whose error log entries to requeue.
p_error_idsBIGINT[]RequiredError log entry IDs to requeue. NULL or empty arrays return no rows.

Raises if the pipeline doesn't exist. Ids that are absent from the error log are reported as not_found rather than raising.

Returns

One row per input id, ordered by ascending error_id.

ColumnTypeDescription
error_idbigintThe supplied error log ID.
actiontextrequeued, skipped_pipeline_level, or not_found (see below).
  • requeued: record-level row deleted and source marked dirty. Table sources enqueue a state event; volume sources set a one-shot retry_requested_at marker.
  • skipped_pipeline_level: entry has a NULL source_id and is left in place. Fix the underlying issue and re-run, or dismiss with aidb.clear_error_logs.
  • not_found: id was absent from the error log, or the pipeline has no error log table (legacy pipelines or Empty sources).

Concurrent requeues on overlapping ids serialize on per-row FOR UPDATE locks; non-overlapping id sets proceed in parallel. Requeue doesn't block aidb.run_pipeline or the background worker.

Background pipelines drain requeued rows automatically on the next worker tick. Disabled or Live pipelines need a follow-up aidb.run_pipeline call. On a Disabled-mode volume source, requeue sets retry_requested_at and emits a NOTICE because it can't schedule a drain; manual aidb.run_pipeline re-reads the whole volume.

Example

SELECT * FROM aidb.requeue_pipeline_errors('my_pipeline', ARRAY[1, 2, 99]);
Output
 error_id | action
----------+------------------------
        1 | requeued
        2 | requeued
       99 | not_found
(3 rows)

Pipeline step config helpers

These functions return a JSONB configuration object for use in step_N_options parameters of aidb.create_pipeline. None of them have a parameter for intermediate_destination — see Intermediate storage for how to add it to a step's options.

aidb.chunk_text_config

Configures a ChunkText step to split text into smaller segments.

Parameters

ParameterTypeDefaultDescription
desired_lengthINTEGERRequiredTarget chunk size.
max_lengthINTEGERNULLMaximum allowed chunk size.
overlap_lengthINTEGERNULLNumber of units to overlap between consecutive chunks.
strategyTEXTNULLChunking unit: 'chars' (default) or 'words'.

Example

-- Chunk into ~200 character segments, max 250, with 25-character overlap
SELECT aidb.chunk_text_config(200, 250, 25, 'chars');

aidb.summarize_text_config

Configures a SummarizeText step to summarize text using a language model.

Parameters

ParameterTypeDefaultDescription
modelTEXTRequiredName of the model to use for summarization.
chunk_configJSONBNULLOptional chunking config (from aidb.chunk_text_config) applied before summarizing.
promptTEXTNULLCustom prompt to guide the summarization.
strategyTEXTNULL'append' (default) or 'reduce'.
reduction_factorINTEGERNULLWith 'reduce' strategy: aggressiveness of each reduction pass (default: 3).
inference_configJSONBNULLOptional inference settings (from aidb.inference_config).

Example

SELECT aidb.summarize_text_config(
    'my_llm',
    chunk_config => aidb.chunk_text_config(100, 100, 10, 'words'),
    prompt       => 'Summarize concisely',
    strategy     => 'reduce',
    reduction_factor => 4
);

aidb.ocr_config

Configures a PerformOcr step to extract text from images using a model.

Parameters

ParameterTypeDefaultDescription
modelTEXTRequiredName of the OCR model to use.

Example

SELECT aidb.ocr_config('my_ocr_model');

aidb.html_parse_config

Configures a ParseHtml step to extract text from HTML content.

Parameters

ParameterTypeDefaultDescription
methodTEXTNULLParsing method to use. If NULL, uses the default method.

Example

SELECT aidb.html_parse_config();

aidb.pdf_parse_config

Configures a ParsePdf step to extract content from PDF documents.

Parameters

ParameterTypeDefaultDescription
methodTEXTNULLParsing method to use. If NULL, uses the default method.
allow_partial_parsingBOOLEANNULLWhen true, returns partial results if some pages can't be parsed.

Example

SELECT aidb.pdf_parse_config(allow_partial_parsing => true);

aidb.knowledge_base_config

Configures a KnowledgeBase step to compute and store embeddings.

Parameters

ParameterTypeDefaultDescription
modelTEXTRequiredName of the embedding model to use.
data_formataidb.PipelineDataFormatRequiredFormat of the data being embedded.
distance_operatoraidb.DistanceOperatorNULLDistance function for similarity search. Defaults to L2.
vector_indexJSONBNULLVector index configuration (from a vector index config helper).

Example

SELECT aidb.knowledge_base_config(
    'my_embedding_model',
    'Text',
    distance_operator => 'Cosine',
    vector_index      => aidb.vector_index_hnsw_config(m => 16, ef_construction => 64)
);

aidb.knowledge_base_config_from_kb

Configures a KnowledgeBase step to attach a pipeline to an existing knowledge base rather than creating a new one.

Parameters

ParameterTypeDefaultDescription
data_formataidb.PipelineDataFormatRequiredFormat of the data being embedded.

Example

SELECT aidb.knowledge_base_config_from_kb('Text');

aidb.inference_config

Builds an inference configuration object for use with language model steps such as SummarizeText. All parameters are optional.

Parameters

ParameterTypeDefaultDescription
system_promptTEXTNULLSystem prompt prepended to each request.
temperatureDOUBLE PRECISIONNULLSampling temperature (higher = more random).
max_tokensINTEGERNULLMaximum number of tokens to generate.
top_pDOUBLE PRECISIONNULLNucleus sampling threshold.
seedBIGINTNULLRandom seed for reproducible outputs.
repeat_penaltyREALNULLPenalty for repeated tokens.
repeat_last_nINTEGERNULLNumber of recent tokens to apply repeat penalty over.
thinkingBOOLEANNULLEnable extended reasoning (supported models only).
extra_argsJSONBNULLAdditional provider-specific inference arguments.

Example

SELECT aidb.inference_config(
    system_prompt => 'You are a technical summarizer.',
    temperature   => 0.3,
    max_tokens    => 512
);

Vector index config helpers

These functions return a JSONB configuration for the vector_index parameter of aidb.knowledge_base_config.

aidb.vector_index_hnsw_config

Configures an HNSW index (pgvector).

Parameters

ParameterTypeDefaultDescription
vector_data_typeTEXTNULLVector storage type.
mINTEGERNULLMaximum number of connections per node (default: 16).
ef_constructionINTEGERNULLBuild-time search depth (default: 64).
ef_searchINTEGERNULLQuery-time search depth.
Note

HNSW supports a maximum of 2000 dimensions. For higher-dimensional vectors, use aidb.vector_index_disabled_config().

The following table shows how each distance_operator value maps to a pgvector ops class:

distance_operatorIndex ops class
L2vector_l2_ops
InnerProductvector_ip_ops
Cosinevector_cosine_ops
L1vector_l1_ops

Example

SELECT aidb.vector_index_hnsw_config(m => 16, ef_construction => 64);

aidb.vector_index_ivfflat_config

Configures a pgvector IVFFlat index.

Parameters

ParameterTypeDefaultDescription
vector_data_typeTEXTNULLVector storage type.
listsINTEGERNULLNumber of clusters (inverted lists).
probesINTEGERNULLNumber of clusters to search at query time.

Example

SELECT aidb.vector_index_ivfflat_config(lists => 100);

aidb.vector_index_chord_hnsw_config

Configures a VectorChord HNSW index.

Parameters

ParameterTypeDefaultDescription
vector_data_typeTEXTNULLVector storage type.
mINTEGERNULLMaximum connections per node.
ef_constructionINTEGERNULLBuild-time search depth.
max_connectionsINTEGERNULLMaximum connections in the graph.
mlDOUBLE PRECISIONNULLLevel multiplier controlling graph layer structure.

Example

SELECT aidb.vector_index_chord_hnsw_config(m => 16, ef_construction => 64);

aidb.vector_index_chord_vchordq_config

Configures a VectorChord Vchordq index.

Parameters

ParameterTypeDefaultDescription
vector_data_typeTEXTNULLVector storage type.
listsTEXTNULLNumber of clusters.
spherical_centroidsBOOLEANNULLUse spherical (normalized) centroids when clustering.

Example

SELECT aidb.vector_index_chord_vchordq_config(lists => '100', spherical_centroids => true);

aidb.vector_index_hsphere_optimized_config

Configures an HSphere Optimized index.

Parameters

ParameterTypeDefaultDescription
clustersINTEGERRequiredNumber of clusters.
precision_valDOUBLE PRECISIONRequiredIndexing precision value.
vector_data_typeTEXTNULLVector storage type.

Example

SELECT aidb.vector_index_hsphere_optimized_config(clusters => 256, precision_val => 0.95);

aidb.vector_index_disabled_config

Disables automatic vector index creation. Use this when your embedding dimensions exceed 2000 or when you want to manage indexes manually.

Example

SELECT aidb.vector_index_disabled_config();

Model config helpers

Model config helpers have moved to the Models reference page.


Configuration

Session-settable GUCs that control AI pipeline behavior.

aidb.pipeline_error_warnings

PropertyValue
Typeboolean
Defaulttrue
ContextSUSET

Superusers can change this setting per session, per role, per database, or in postgresql.conf. Other roles need an explicit GRANT SET ON PARAMETER aidb.pipeline_error_warnings before they can SET it.

When enabled, each error logged to a pipeline's error log table also emits a Postgres WARNING. Errors persist to the log regardless of this setting. Disable to silence the warnings without affecting persistence:

SET aidb.pipeline_error_warnings = false;