pgml-cms/docs/open-source/korvus/api/pipelines.md
Pipelines define the schema for the transformation of documents. Different Pipelines can be used for different tasks.
See our guide to Constructing Piplines for more information on how to create Pipelines.
New Pipelines require schema. Here are a few examples of variations of schema along with common use cases.
For the following section we will assume we have documents that have the structure:
{
"id": "Each document has a unique id",
"title": "Each document has a title",
"body": "Each document has some body text"
}
{% tabs %} {% tab title="JavaScript" %}
const pipeline = korvus.newPipeline("test_pipeline", {
title: {
full_text_search: { configuration: "english" },
},
body: {
splitter: { model: "recursive_character" },
semantic_search: {
model: "Alibaba-NLP/gte-base-en-v1.5",
},
},
});
{% endtab %}
{% tab title="Python" %}
pipeline = Pipeline(
"test_pipeline",
{
"title": {
"full_text_search": {"configuration": "english"},
},
"body": {
"splitter": {"model": "recursive_character"},
"semantic_search": {
"model": "Alibaba-NLP/gte-base-en-v1.5",
},
},
},
)
{% endtab %}
{% tab title="Rust" %}
let mut pipeline = Pipeline::new(
"test_pipeline",
Some(
serde_json::json!({
"title": {
"full_text_search": {"configuration": "english"},
},
"body": {
"splitter": {"model": "recursive_character"},
"semantic_search": {
"model": "Alibaba-NLP/gte-base-en-v1.5",
},
},
})
.into(),
),
)?;
{% endtab %}
{% tab title="C" %}
PipelineC * pipeline = korvus_pipelinec_new(
"test_pipeline",
"{\
\"title\": {\
\"full_text_search\": {\"configuration\": \"english\"},\
},\
\"body\": {\
\"splitter\": {\"model\": \"recursive_character\"},\
\"semantic_search\": {\
\"model\": \"Alibaba-NLP/gte-base-en-v1.5\"\
}\
}\
}"
);
{% endtab %} {% endtabs %}
This Pipeline does two things. For each document in the Collection, it converts all titles into tsvectors enabling full text search, and splits and embeds the body text enabling semantic search using vectors. This kind of Pipeline would be great for site search utilizing hybrid keyword and semantic search.
For a more simple RAG use case, the following Pipeline would work well.
{% tabs %} {% tab title="JavaScript" %}
const pipeline = korvus.newPipeline("test_pipeline", {
body: {
splitter: { model: "recursive_character" },
semantic_search: {
model: "Alibaba-NLP/gte-base-en-v1.5",
},
},
});
{% endtab %}
{% tab title="Python" %}
pipeline = Pipeline(
"test_pipeline",
{
"body": {
"splitter": {"model": "recursive_character"},
"semantic_search": {
"model": "Alibaba-NLP/gte-base-en-v1.5",
},
},
},
)
{% endtab %}
{% tab title="Rust" %}
let mut pipeline = Pipeline::new(
"test_pipeline",
Some(
serde_json::json!({
"body": {
"splitter": {"model": "recursive_character"},
"semantic_search": {
"model": "Alibaba-NLP/gte-base-en-v1.5",
},
},
})
.into(),
),
)?;
{% endtab %}
{% tab title="C" %}
PipelineC * pipeline = korvus_pipelinec_new(
"test_pipeline",
"{\
\"body\": {\
\"splitter\": {\"model\": \"recursive_character\"},\
\"semantic_search\": {\
\"model\": \"Alibaba-NLP/gte-base-en-v1.5\"\
}\
}\
}"
);
{% endtab %} {% endtabs %}
This Pipeline splits and embeds the body text enabling semantic search using vectors. This is a very popular Pipeline for RAG.
We support most every open source model on Hugging Face, and OpenAI's embedding models. To use a model from OpenAI specify the source as openai, and make sure and set the environment variable OPENAI_API_KEY.
{% tabs %} {% tab title="JavaScript" %}
const pipeline = korvus.newPipeline("test_pipeline", {
body: {
splitter: { model: "recursive_character" },
semantic_search: {
model: "text-embedding-ada-002",
source: "openai"
},
},
});
{% endtab %}
{% tab title="Python" %}
pipeline = Pipeline(
"test_pipeline",
{
"body": {
"splitter": {"model": "recursive_character"},
"semantic_search": {"model": "text-embedding-ada-002", "source": "openai"},
},
},
)
{% endtab %}
{% tab title="Rust" %}
let mut pipeline = Pipeline::new(
"test_pipeline",
Some(
serde_json::json!({
"body": {
"splitter": {"model": "recursive_character"},
"semantic_search": {
"model": "text-embedding-ada-002",
"source": "openai"
},
},
})
.into(),
),
)?;
{% endtab %}
{% tab title="C" %}
PipelineC * pipeline = korvus_pipelinec_new(
"test_pipeline",
"{\
\"body\": {\
\"splitter\": {\"model\": \"recursive_character\"},\
\"semantic_search\": {\
\"model\": \"text-embedding-ada-002\",\
\"source\": \"openai\"\
}\
}\
}"
);
{% endtab %} {% endtabs %}
By default the SDK uses HNSW indexes to efficiently perform vector recall. The default HNSW index sets m to 16 and ef_construction to 64. These defaults can be customized in the Pipeline schema. See pgvector for more information on vector indexes.
{% tabs %} {% tab title="JavaScript" %}
const pipeline = korvus.newPipeline("test_pipeline", {
body: {
splitter: { model: "recursive_character" },
semantic_search: {
model: "Alibaba-NLP/gte-base-en-v1.5",
hnsw: {
m: 100,
ef_construction: 200
}
},
},
});
{% endtab %}
{% tab title="Python" %}
pipeline = Pipeline(
"test_pipeline",
{
"body": {
"splitter": {"model": "recursive_character"},
"semantic_search": {
"model": "Alibaba-NLP/gte-base-en-v1.5",
"hnsw": {"m": 100, "ef_construction": 200},
},
},
},
)
{% endtab %}
{% tab title="Rust" %}
let mut pipeline = Pipeline::new(
"test_pipeline",
Some(
serde_json::json!({
"body": {
"splitter": {"model": "recursive_character"},
"semantic_search": {
"model": "Alibaba-NLP/gte-base-en-v1.5",
"hnsw": {"m": 100, "ef_construction": 200}
},
},
})
.into(),
),
)?;
{% endtab %}
{% tab title="C" %}
PipelineC * pipeline = korvus_pipelinec_new(
"test_pipeline",
"{\
\"body\": {\
\"splitter\": {\"model\": \"recursive_character\"},\
\"semantic_search\": {\
\"model\": \"Alibaba-NLP/gte-base-en-v1.5\",\
\"hnsw\": {\"m\": 100, \"ef_construction\": 200}\
}\
}\
}"
);
{% endtab %} {% endtabs %}
The first time a Pipeline is added to a Collection it will automatically chunk and embed any documents already in that Collection.
{% tabs %} {% tab title="JavaScript" %}
await collection.add_pipeline(pipeline)
{% endtab %}
{% tab title="Python" %}
await collection.add_pipeline(pipeline)
{% endtab %}
{% tab title="Rust" %}
collection.add_pipeline(&mut pipeline).await?;
{% endtab %}
{% tab title="C" %}
korvus_collectionc_add_pipeline(collection, pipeline);
{% endtab %} {% endtabs %}
Note: After a
Pipelinehas been added to aCollectioninstances of thePipelineobject can be created without specifying a schema:
{% tabs %} {% tab title="JavaScript" %}
const pipeline = korvus.newPipeline("test_pipeline")
{% endtab %}
{% tab title="Python" %}
pipeline = Pipeline("test_pipeline")
{% endtab %}
{% tab title="Rust" %}
let mut pipeline = Pipeline::new("test_pipeline", None)?;
{% endtab %}
{% tab title="C" %}
PipelineC * pipeline = korvus_pipelinec_new("test_pipeline", NULL);
{% endtab %} {% endtabs %}
There are two different forms of search that can be done after adding a Pipeline to a Collection
See their respective pages for more information on searching.
Pipelines can be disabled or removed to prevent them from running automatically when documents are upserted.
{% tabs %} {% tab title="JavaScript" %}
const pipeline = korvus.newPipeline("test_pipeline")
const collection = korvus.newCollection("test_collection")
await collection.disable_pipeline(pipeline)
{% endtab %}
{% tab title="Python" %}
pipeline = Pipeline("test_pipeline")
collection = Collection("test_collection")
await collection.disable_pipeline(pipeline)
{% endtab %}
{% tab title="Rust" %}
let mut collection = Collection::new("test_collection", None)?;
let mut pipeline = Pipeline::new("test_pipeline", None)?;
collection.disable_pipeline(&mut pipeline).await?;
{% endtab %}
{% tab title="C" %}
CollectionC * collection = korvus_collectionc_new("test_collection", NULL);
PipelineC * pipeline = korvus_pipelinec_new("test_pipeline", NULL);
korvus_collectionc_disable_pipeline(collection, pipeline);
{% endtab %} {% endtabs %}
Disabling a Pipeline prevents it from running automatically, but leaves all tsvectors, chunks, and embeddings already created by that Pipeline in the database.
Disabled Pipelines can be re-enabled.
{% tabs %} {% tab title="JavaScript" %}
const pipeline = korvus.newPipeline("test_pipeline")
const collection = korvus.newCollection("test_collection")
await collection.enable_pipeline(pipeline)
{% endtab %}
{% tab title="Python" %}
pipeline = Pipeline("test_pipeline")
collection = Collection("test_collection")
await collection.enable_pipeline(pipeline)
{% endtab %}
{% tab title="Rust" %}
let mut collection = Collection::new("test_collection", None)?;
let mut pipeline = Pipeline::new("test_pipeline", None)?;
collection.enable_pipeline(&mut pipeline).await?;
{% endtab %}
{% tab title="C" %}
CollectionC * collection = korvus_collectionc_new("test_collection", NULL);
PipelineC * pipeline = korvus_pipelinec_new("test_pipeline", NULL);
korvus_collectionc_enable_pipeline(collection, pipeline);
{% endtab %} {% endtabs %}
Enabling a Pipeline will cause it to automatically run on all documents it may have missed while disabled.
{% tabs %} {% tab title="JavaScript" %}
const pipeline = korvus.newPipeline("test_pipeline")
const collection = korvus.newCollection("test_collection")
await collection.remove_pipeline(pipeline)
{% endtab %}
{% tab title="Python" %}
pipeline = Pipeline("test_pipeline")
collection = Collection("test_collection")
await collection.remove_pipeline(pipeline)
{% endtab %}
{% tab title="Rust" %}
let mut collection = Collection::new("test_collection", None)?;
let mut pipeline = Pipeline::new("test_pipeline", None)?;
collection.remove_pipeline(&mut pipeline).await?;
{% endtab %}
{% tab title="C" %}
CollectionC * collection = korvus_collectionc_new("test_collection", NULL);
PipelineC * pipeline = korvus_pipelinec_new("test_pipeline", NULL);
korvus_collectionc_remove_pipeline(collection, pipeline);
{% endtab %} {% endtabs %}
Removing a Pipeline deletes it and all associated data from the database. Removed Pipelines cannot be re-enabled but can be recreated.