diff --git a/examples/pipelines/adaptive-rag/app.yaml b/examples/pipelines/adaptive-rag/app.yaml index abb713b..907bacd 100644 --- a/examples/pipelines/adaptive-rag/app.yaml +++ b/examples/pipelines/adaptive-rag/app.yaml @@ -46,7 +46,6 @@ $retriever_factory: !pw.stdlib.indexing.BruteForceKnnFactory embedder: $embedder metric: !pw.stdlib.indexing.BruteForceKnnMetricKind.COS dimensions: 1536 - $document_store: !pw.xpacks.llm.document_store.DocumentStore docs: $sources @@ -62,7 +61,6 @@ question_answerer: !pw.xpacks.llm.question_answering.AdaptiveRAGQuestionAnswerer max_iterations: 4 strict_prompt: true - # Change host and port by uncommenting these lines # host: "0.0.0.0" # port: 8000 @@ -70,5 +68,6 @@ question_answerer: !pw.xpacks.llm.question_answering.AdaptiveRAGQuestionAnswerer # Cache configuration # with_cache: true -# Set `terminate_on_error` to true if you want the program to terminate whenever any error is encountered -# terminate_on_error: false +# If `terminate_on_error` is true then the program will terminate whenever any error is encountered. +# Defaults to false, uncomment the following line if you want to set it to true +# terminate_on_error: true diff --git a/examples/pipelines/demo-document-indexing/app.yaml b/examples/pipelines/demo-document-indexing/app.yaml index 17f6816..8466dff 100644 --- a/examples/pipelines/demo-document-indexing/app.yaml +++ b/examples/pipelines/demo-document-indexing/app.yaml @@ -41,7 +41,6 @@ $retriever_factory: !pw.stdlib.indexing.BruteForceKnnFactory embedder: $embedder metric: !pw.stdlib.indexing.BruteForceKnnMetricKind.COS dimensions: 1536 - document_store: !pw.xpacks.llm.document_store.DocumentStore docs: $sources @@ -49,13 +48,13 @@ document_store: !pw.xpacks.llm.document_store.DocumentStore splitter: $splitter retriever_factory: $retriever_factory - -# Change host and port by uncommenting these files +# Change host and port by uncommenting these lines # host: "0.0.0.0" # port: 8000 # Cache configuration # with_cache: true -# Set `terminate_on_error` to true if you want the program to terminate whenever any error is encountered -# terminate_on_error: false +# If `terminate_on_error` is true then the program will terminate whenever any error is encountered. +# Defaults to false, uncomment the following line if you want to set it to true +# terminate_on_error: true diff --git a/examples/pipelines/demo-question-answering/app.yaml b/examples/pipelines/demo-question-answering/app.yaml index 39fb915..2db5c4d 100644 --- a/examples/pipelines/demo-question-answering/app.yaml +++ b/examples/pipelines/demo-question-answering/app.yaml @@ -47,7 +47,6 @@ $retriever_factory: !pw.stdlib.indexing.BruteForceKnnFactory metric: !pw.stdlib.indexing.BruteForceKnnMetricKind.COS dimensions: 1536 - $document_store: !pw.xpacks.llm.document_store.DocumentStore docs: $sources parser: $parser @@ -58,13 +57,13 @@ question_answerer: !pw.xpacks.llm.question_answering.BaseRAGQuestionAnswerer llm: $llm indexer: $document_store - -# Change host and port by uncommenting these files +# Change host and port by uncommenting these lines # host: "0.0.0.0" # port: 8000 # Cache configuration # with_cache: true -# Set `terminate_on_error` to true if you want the program to terminate whenever any error is encountered -# terminate_on_error: false +# If `terminate_on_error` is true then the program will terminate whenever any error is encountered. +# Defaults to false, uncomment the following line if you want to set it to true +# terminate_on_error: true diff --git a/examples/pipelines/gpt_4o_multimodal_rag/app.yaml b/examples/pipelines/gpt_4o_multimodal_rag/app.yaml index da579dc..9221afd 100644 --- a/examples/pipelines/gpt_4o_multimodal_rag/app.yaml +++ b/examples/pipelines/gpt_4o_multimodal_rag/app.yaml @@ -59,7 +59,6 @@ $retriever_factory: !pw.stdlib.indexing.BruteForceKnnFactory metric: !pw.engine.BruteForceKnnMetricKind.COS dimensions: 1536 - $document_store: !pw.xpacks.llm.document_store.DocumentStore docs: $sources parser: $parser @@ -69,14 +68,13 @@ question_answerer: !pw.xpacks.llm.question_answering.BaseRAGQuestionAnswerer llm: $llm indexer: $document_store - -# Change host and port by uncommenting these files +# Change host and port by uncommenting these lines # host: "0.0.0.0" # port: 8000 - # Cache configuration # with_cache: true -# Set `terminate_on_error` to true if you want the program to terminate whenever any error is encountered -# terminate_on_error: false +# If `terminate_on_error` is true then the program will terminate whenever any error is encountered. +# Defaults to false, uncomment the following line if you want to set it to true +# terminate_on_error: true diff --git a/examples/pipelines/private-rag/app.yaml b/examples/pipelines/private-rag/app.yaml index d664e0b..09105cb 100644 --- a/examples/pipelines/private-rag/app.yaml +++ b/examples/pipelines/private-rag/app.yaml @@ -54,7 +54,6 @@ $retriever_factory: !pw.stdlib.indexing.BruteForceKnnFactory metric: !pw.engine.BruteForceKnnMetricKind.COS dimensions: 1536 - $document_store: !pw.xpacks.llm.document_store.DocumentStore docs: $sources parser: $parser @@ -69,13 +68,13 @@ question_answerer: !pw.xpacks.llm.question_answering.AdaptiveRAGQuestionAnswerer max_iterations: 4 strict_prompt: true - -# Change host and port by uncommenting these files +# Change host and port by uncommenting these lines # host: "0.0.0.0" # port: 8000 # Cache configuration # with_cache: true -# Set `terminate_on_error` to true if you want the program to terminate whenever any error is encountered -# terminate_on_error: false +# If `terminate_on_error` is true then the program will terminate whenever any error is encountered. +# Defaults to false, uncomment the following line if you want to set it to true +# terminate_on_error: true diff --git a/examples/pipelines/slides_ai_search/app.yaml b/examples/pipelines/slides_ai_search/app.yaml index 2569d20..59707f7 100644 --- a/examples/pipelines/slides_ai_search/app.yaml +++ b/examples/pipelines/slides_ai_search/app.yaml @@ -79,5 +79,6 @@ details_schema: # Cache configuration # with_cache: true -# Set `terminate_on_error` to true if you want the program to terminate whenever any error is encountered -# terminate_on_error: false +# If `terminate_on_error` is true then the program will terminate whenever any error is encountered. +# Defaults to false, uncomment the following line if you want to set it to true +# terminate_on_error: true