> ## Documentation Index
> Fetch the complete documentation index at: https://mintlify-poc.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# indexing_none

> Disable automatic indexing for embeddings

Specify that no special indexing should be used for the embeddings.

This is useful when you don't need fast similarity searches or when you're dealing with a small amount of data.

## Samples

```sql theme={"dark"}
SELECT ai.create_vectorizer(
    'blog_posts'::regclass,
    indexing => ai.indexing_none(),
    -- other parameters...
);
```

## Arguments

This function takes no arguments.

## Returns

A JSON configuration object that you can use in `ai.create_vectorizer`.
