Examples

This section provides real-world examples of custom pipelines ranging from simple LLM wrappers to complex RAG architectures.

Official Examples in GitHub

The best way to learn is by looking at the actual implementation in our repository:

Example
Description
Source Code

NoOp

No retrieval, direct prompt to LLM.

Standard RAG

Document retrieval, vector store, and generation.

Deep Research

Advanced agentic workflow with research steps.

Tip: When developing your own pipeline, we recommend starting from the no_op folder as a template and progressively adding steps.

Last updated