Skip to content

RAG resources

Three resources that build a retrieval-augmented generation (RAG) pipeline. Each has its own reference page.

Applies to both workflow mode and agent mode.

text
loader (load + chunk)  ->  embedding OR vectorStore (index)  ->  embedding OR vectorStore (search)  ->  chat (answer with context)
ResourceRoleReference
loader:Read files, URLs, or a directory into text chunksLoader
embedding:Local SQLite keyword store - index and search, no API keyEmbedding
vectorStore:External vector database - Qdrant, Chroma, pgvector, ...Vector store

embedding or vector store

embedding:vectorStore:
StorageLocal SQLite fileExternal vector DB service
MatchingKeyword (LIKE)Vector similarity
SetupNoneRun and configure the DB
API keyNot neededNeeded for the embedding model
Best forOn-prem, small corporaProduction scale, semantic ranking

See also

Released under the Apache 2.0 License.