RAG Pipeline Builder

Configure, preview, and export no-code RAG pipelines β€” Dify-style but code-first

Pipeline Stages

πŸ“„ Data Source
Files, URLs, or inline text to index
βœ‚οΈ Chunking
Split documents into retrievable chunks
πŸ”’ Embedding
Convert chunks to vectors
πŸ” Retrieval
Dense, sparse, or hybrid search
πŸ† Ranking
LLM or cross-encoder re-ranking
✨ Generation
Model, prompt, and self-correction config
πŸ›‘οΈ Guardrails
PII detection, cost cap, content filters
MeshFlow RAG supports HybridRetriever (BM25 + dense), LLMRanker, SelfCorrectingRAG with grade-threshold refinement, and full cache_control prompt caching.

Pipeline Preview

πŸ“„ Data Source
files: [], urls: [], inline: ""
βœ“
↓
βœ‚οΈ Chunking
chunk_size: 500 Β· overlap: 50
βœ“
↓
πŸ”’ Embedding
provider: built-in (char n-gram β†’ numpy BoW β†’ sentence-transformers)
βœ“
↓
πŸ” Retrieval
strategy: dense Β· top_k: 5
!
↓
πŸ† Ranking
ranker: none (skip)
!
↓
✨ Generation
model: claude-sonnet-4-6 Β· self-correct: off
!
↓
πŸ›‘οΈ Guardrails
pii_block: off Β· cost_cap: none
!

  

Configure: Data Source