overview
Krixik Pipeline Examples
🇨🇴 Versión en español de este documento
Ready to see some pipeline examples to draw inspiration from? Let's dive in!
The first section below details every single-module pipeline buildable today. Use these if there is one particular module you'd like to leverage by itself.
Then we delve into a few examples of multi-module pipelines, which is where the power of Krixik really shines through. We close with a look at multi-module search-enabled pipelines, whose functionality is slightly different from the rest.
Single-Module Pipelines
Multi-step conversion pipeline examples
-
Recursive Summarization: Chains multiple text
summarizemodules together. The longer the module chain, the greater the degree of summarization. -
Translated Transcription: After
transcribingan input audio file,translatesthe transcript into the language of your choice. -
Sentiment Analysis on Transcription: After
transcribingan input audio file, performssentiment analysison each sentence of the transcript. -
Sentiment Analysis on Translation:
Translatesinput text into English and then perfomssentiment analysison each sentence of the translation. -
Sentiment Analysis on Translated Transcription: After first
transcribingan input audio file and thentranslatingthe transcript into English, performssentiment analysison each sentence of the translation.
multi-step search and RAG pipeline examples
-
Search Pipeline Overview: Search pipelines call for the use of one of two additional methods. Read about it here.
-
Semantic (Vector) Search: Enables
semantic (vector) searchon an input text file. -
Semantic (Vector) Search on Snippets: Enables
semantic (vector) searchon snippets in an input JSON file. -
Keyword Search: Enables
keyword searchon an input text file. -
Semantically-Searchable Transcription:
Transcribesan input audio file and then enablessemantic (vector) searchon the transcript. -
Keyword-Searchable Transcription:
Transcribesan input audio file and then enableskeyword searchon the transcript. -
Semantically-Searchable Translation:
Translatesan input text file and then enablessemantic (vector) searchon the translation. -
Semantically-Searchable Translated Transcription:
Transcribesan input audio file,translatesit into English, and then enablessemantic (vector) searchon the translation. -
Semantically-Searchable OCR:
Extracts textfrom an input image and then enablessemantic (vector) searchon the extracted text. -
Keyword-Searchable Image Captions: Generates a
textual captionfor an input image and then enableskeyword searchon the caption.