Skip to main content
Skip the parsing step. Only appropriate for textual data that doesn’t require parsing.

Samples

Skip parsing for text data

SELECT ai.create_vectorizer(
    'text_content'::regclass,
    loading => ai.loading_column('content'),
    parsing => ai.parsing_none(),
    embedding => ai.embedding_openai('text-embedding-3-small', 768)
);

Arguments

This function takes no parameters.

Returns

A JSON configuration object for use in create_vectorizer().