Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[source,console]
----
DELETE _ingest/pipeline/*_embeddings
DELETE _ingest/pipeline/*_embeddings_pipeline
----
// TEST
// TEARDOWN
Expand All @@ -13,7 +13,7 @@ DELETE _ingest/pipeline/*_embeddings

[source,console]
--------------------------------------------------
PUT _ingest/pipeline/cohere_embeddings
PUT _ingest/pipeline/cohere_embeddings_pipeline
{
"processors": [
{
Expand All @@ -39,7 +39,7 @@ and the `output_field` that will contain the {infer} results.

[source,console]
--------------------------------------------------
PUT _ingest/pipeline/elser_embeddings
PUT _ingest/pipeline/elser_embeddings_pipeline
{
"processors": [
{
Expand All @@ -65,7 +65,7 @@ and the `output_field` that will contain the {infer} results.

[source,console]
--------------------------------------------------
PUT _ingest/pipeline/hugging_face_embeddings
PUT _ingest/pipeline/hugging_face_embeddings_pipeline
{
"processors": [
{
Expand All @@ -91,7 +91,7 @@ and the `output_field` that will contain the {infer} results.

[source,console]
--------------------------------------------------
PUT _ingest/pipeline/openai_embeddings
PUT _ingest/pipeline/openai_embeddings_pipeline
{
"processors": [
{
Expand All @@ -117,7 +117,7 @@ and the `output_field` that will contain the {infer} results.

[source,console]
--------------------------------------------------
PUT _ingest/pipeline/azure_openai_embeddings
PUT _ingest/pipeline/azure_openai_embeddings_pipeline
{
"processors": [
{
Expand All @@ -143,7 +143,7 @@ and the `output_field` that will contain the {infer} results.

[source,console]
--------------------------------------------------
PUT _ingest/pipeline/azure_ai_studio_embeddings
PUT _ingest/pipeline/azure_ai_studio_embeddings_pipeline
{
"processors": [
{
Expand All @@ -169,7 +169,7 @@ and the `output_field` that will contain the {infer} results.

[source,console]
--------------------------------------------------
PUT _ingest/pipeline/google_vertex_ai_embeddings
PUT _ingest/pipeline/google_vertex_ai_embeddings_pipeline
{
"processors": [
{
Expand All @@ -195,7 +195,7 @@ and the `output_field` that will contain the {infer} results.

[source,console]
--------------------------------------------------
PUT _ingest/pipeline/mistral_embeddings
PUT _ingest/pipeline/mistral_embeddings_pipeline
{
"processors": [
{
Expand All @@ -221,7 +221,7 @@ and the `output_field` that will contain the {infer} results.

[source,console]
--------------------------------------------------
PUT _ingest/pipeline/amazon_bedrock_embeddings
PUT _ingest/pipeline/amazon_bedrock_embeddings_pipeline
{
"processors": [
{
Expand All @@ -247,7 +247,7 @@ and the `output_field` that will contain the {infer} results.

[source,console]
--------------------------------------------------
PUT _ingest/pipeline/alibabacloud_ai_search_embeddings
PUT _ingest/pipeline/alibabacloud_ai_search_embeddings_pipeline
{
"processors": [
{
Expand Down
20 changes: 10 additions & 10 deletions docs/reference/tab-widgets/inference-api/infer-api-reindex.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ POST _reindex?wait_for_completion=false
},
"dest": {
"index": "cohere-embeddings",
"pipeline": "cohere_embeddings"
"pipeline": "cohere_embeddings_pipeline"
}
}
----
Expand All @@ -37,7 +37,7 @@ POST _reindex?wait_for_completion=false
},
"dest": {
"index": "elser-embeddings",
"pipeline": "elser_embeddings"
"pipeline": "elser_embeddings_pipeline"
}
}
----
Expand All @@ -60,7 +60,7 @@ POST _reindex?wait_for_completion=false
},
"dest": {
"index": "hugging-face-embeddings",
"pipeline": "hugging_face_embeddings"
"pipeline": "hugging_face_embeddings_pipeline"
}
}
----
Expand All @@ -84,7 +84,7 @@ POST _reindex?wait_for_completion=false
},
"dest": {
"index": "openai-embeddings",
"pipeline": "openai_embeddings"
"pipeline": "openai_embeddings_pipeline"
}
}
----
Expand Down Expand Up @@ -112,7 +112,7 @@ POST _reindex?wait_for_completion=false
},
"dest": {
"index": "azure-openai-embeddings",
"pipeline": "azure_openai_embeddings"
"pipeline": "azure_openai_embeddings_pipeline"
}
}
----
Expand Down Expand Up @@ -140,7 +140,7 @@ POST _reindex?wait_for_completion=false
},
"dest": {
"index": "azure-ai-studio-embeddings",
"pipeline": "azure_ai_studio_embeddings"
"pipeline": "azure_ai_studio_embeddings_pipeline"
}
}
----
Expand All @@ -167,7 +167,7 @@ POST _reindex?wait_for_completion=false
},
"dest": {
"index": "google-vertex-ai-embeddings",
"pipeline": "google_vertex_ai_embeddings"
"pipeline": "google_vertex_ai_embeddings_pipeline"
}
}
----
Expand All @@ -189,7 +189,7 @@ POST _reindex?wait_for_completion=false
},
"dest": {
"index": "mistral-embeddings",
"pipeline": "mistral_embeddings"
"pipeline": "mistral_embeddings_pipeline"
}
}
----
Expand All @@ -212,7 +212,7 @@ POST _reindex?wait_for_completion=false
},
"dest": {
"index": "amazon-bedrock-embeddings",
"pipeline": "amazon_bedrock_embeddings"
"pipeline": "amazon_bedrock_embeddings_pipeline"
}
}
----
Expand All @@ -235,7 +235,7 @@ POST _reindex?wait_for_completion=false
},
"dest": {
"index": "alibabacloud-ai-search-embeddings",
"pipeline": "alibabacloud_ai_search_embeddings"
"pipeline": "alibabacloud_ai_search_embeddings_pipeline"
}
}
----
Expand Down
Loading