Demo stack: LangChain, Llama.cpp, Mistral.ai, Qwen Embeddings, PostgreSQL, Telegraf, Prometheus on Docker.
I recently came across Machine Learning Mastery's guide on Building a RAG Pipeline with llama.cpp and decided to try it myself.
One thing quickly became apparent: some of the APIs and methods used in the example had already changed or become deprecated.
That led me to a bigger question:
How do you design a RAG system that can evolve as the underlying technologies change?
Instead of tightly coupling the application to a specific LLM, vector database, or document-processing framework, I experimented with a more modular architecture.
This way I get a more resilient architecture, for instance if I need a transition between local on-premise to fully on cloud or just hybrid; ability to switch to different database like PostgreSQL instead of ChromaDB, due to the data integration and ACID compliance!
A few principles became particularly important:
- π§© Decouples the technology dependency Provider implementations can be replaced without changing core logic, as the architecture relies on interfaces, abstractions & models, while Lazy Imports isolate technology-specific dependencies.
def importOnCall(..):
from.. import .. # Lazy import
return ResultModel(..) # tied to Abstracts & Models
- ποΈ On-premise, hybrid & Multi-platform support Decoupling from certain SDK or API or local implementations keep my options open to plug & play the document sources, different LLM models or vector stores/databases, regardless of being local, hybrid or on cloud services. π₯οΈπβοΈ
vectorstore: VectorStore = PGVectorStore(...)
vectorstore: VectorStore = OtherVectorDBService(..)
-
π οΈ Separation of responsibilities
Each layer has a focused responsibility:- π§ Domain β business concepts, models, and contracts
- π Ports β define what the application needs
- βοΈ Infrastructure β provides concrete implementations
- π Pipelines/Application β orchestrates the workflow
- π§© Composition β selects and wires implementations together
π¦οΈ Observability, Containerization & Resource/Network monitoring, Confiurations are pass in form of Environment Variables, see
sample.env. Telegraf is used to monitor the resource consumsion and network traffic, and project metrics to Prometheus. See the ποΈ Observability section.
Read more:
- ποΈ Ingestion Pipeline
- ποΈ Retrieval Pipeline
- ποΈ Extraction Pipeline
- ποΈ Observability
- π§οΈ Turning Implementations
ποΈ Ingestion Pipeline
########################### INTERFACES & MODELS ###########################
from yoga1290.rag.domain.models import (
Document,
ParsedDocument,
SearchDocument)
from yoga1290.rag.domain.ports import (
DocumentSource,
DocumentParser,
VectorStore,
SearchPreparer,
Embedder)
########################### IMPLEMENTATIONS ###########################
from yoga1290.rag.infrastructure.embeddings import LlamaCppEmbeddings
from yoga1290.rag.infrastructure.vectorstores import PGVectorStore
from yoga1290.rag.infrastructure.local.sources.csv_document_source import CsvDocumentSource
from yoga1290.rag.infrastructure.local.parsing.local_document_parser import LocalDocumentParser
from yoga1290.rag.infrastructure.local.search.local_search_preparer import LocalSearchPreparer
from yoga1290.rag.application.pipelines import IngestionPipeline
document_source: DocumentSource = (
CsvDocumentSource(
# configuration injected from Environment Variables
# csv_path
# document_column
))
document_parser: DocumentParser = (
LocalDocumentParser())
document_search_preparer: SearchPreparer = (
LocalSearchPreparer())
embedder: Embedder = (
LlamaCppEmbeddings())
vectorstore: VectorStore = (
PGVectorStore(
# configration from Environment Variables; connection_string=f"postgresql+psycopg://{os.getenv("POSTGRES_USER")}.."
embedder=embedder))
IngestionPipeline(
parser= document_parser,
extractor= None,
classifier= None,
search_preparer= document_search_preparer,
vectorstore= vectorstore
).process( documents= document_source )
ποΈ Retrieval Pipeline
########################### INTERFACES & MODELS ###########################
from yoga1290.rag.domain.models import (
Document,
ParsedDocument,
SearchDocument,
)
from yoga1290.rag.domain.ports import (
DocumentSource,
DocumentParser,
VectorStore,
SearchPreparer,
Embedder,
Retriever)
########################### IMPLEMENTATIONS ###########################
from yoga1290.rag.infrastructure.embeddings import LlamaCppEmbeddings
from yoga1290.rag.infrastructure.vectorstores import PGVectorStore, PGVectorRetriever
from yoga1290.rag.infrastructure.local.sources.csv_document_source import CsvDocumentSource
from yoga1290.rag.infrastructure.local.parsing.local_document_parser import LocalDocumentParser
from yoga1290.rag.infrastructure.local.search.local_search_preparer import LocalSearchPreparer
from yoga1290.rag.factories.llm_factory import LLMFactory
from yoga1290.rag.application.pipelines import RetrievalPipeline
embedder: Embedder = (
LlamaCppEmbeddings())
vectorstore: VectorStore = (
PGVectorStore(
#connection_string=f"postgresql+psycopg://{os.getenv("POSTGRES_USER")}.."
embedder=embedder))
pgvector_retriever: Retriever = (
PGVectorRetriever(vectorstore=vectorstore, ));
llm_llama= LLMFactory.createLocalLlamaCppLLM()
response = RetrievalPipeline(
llm= llm_llama,
retriever= pgvector_retriever,
top_k=2,
).run( question= "Make a good introduction about my backend skillset" )
print(f"Answer {response.answer}")
init: embeddings required but some input tokens were not marked as outputs -> overriding
Answer
"Welcome to my backend skillset! I specialize in the practical, hands-on experience of using AI-assisted development tools such as GitHub Copilot and Claude Code. This allows me to write, review, refactor, debug, and optimize code efficiently.
In addition to my AI-assisted development skills, I have extensive experience with Docker for building and managing container images.
My expertise also extends to API gateway configuration, proxy development, and policy management, using tools such as Apigee or similar API gateways.
While these are my primary skillsets, I also possess a nice-to-have set of skills that include experience with AWS, GCP, or Azure; Kafka or RabbitMQ; Helm charts and/or Kubernetes operators; Jira, Confluence, Atlassian Rovo, and similar tools.
In summary, my backend skillset is well-rounded, with a focus on AI-assisted development, Docker, API gateway configuration, proxy development, and policy management. I also possess a nice-to-have set of skills that include experience with various cloud providers, Kafka or RabbitMQ, Helm charts and/or Kubernetes operators, Jira, Confluence, Atlassian Rovo, and similar tools."
ποΈ Extraction Pipeline
Here's an example of asking the LLM (Mistral on llamaCpp) to extract fields from my receipt emails pulled using yoga1290/python-imap-smtp [see docker-compose.yml] that outputs to CSV table.
It simply generates inner prompt per each requested field and collects the responses into a dict map.
########################### INTERFACES & MODELS ###########################
from yoga1290.rag.domain.models import (
ParsedDocument,
ExtractedData,)
from yoga1290.rag.domain.ports import (
DocumentSource,
DocumentParser,
DocumentExtractor,)
############################################################################
from yoga1290.rag.infrastructure.local.extraction import LlamaCppDocumentExtractor
from yoga1290.rag.infrastructure.local.sources.csv_document_source import CsvDocumentSource
from yoga1290.rag.infrastructure.local.parsing.local_document_parser import LocalDocumentParser
document_source: DocumentSource = (
CsvDocumentSource(
# configuration injected from Environment Variables
csv_path = "documents/output.csv",
document_column = "attachments"
))
document_parser: DocumentParser = (
LocalDocumentParser())
document_extractor: DocumentExtractor = (
LlamaCppDocumentExtractor())
for document in document_source:
parsed_document: ParsedDocument = (
document_parser.parse(document))
response: ExtractedData = document_extractor.extract(
parsed_document=parsed_document,
fields= ['Is there a payment receipt?',
'Total Payment Amount',
'Vendor' ,
'Item name',
'Date of purchase'])
print(f'response: {response}')
ποΈ Container Observability
Monitoring the resource consumption, network traffic & isolation can ideicate how well different LLM models can perform under larger sets.
In my docker-compose.yml configuration, there're the following 3 containers:
-
monitored-job: a container with Python & Telegraf pre-installed, see my [Dockerfile], [docker-compose.yml]. -
Promethus: collecting metric data from the Telegraf server in themonitored-job -
Grafana: for visualizingPromethusmetrics into an intuitive dashboard; I used the Grafana's dashboard: System Metrics for the Linux Hosts, which is compatible with Telegraf projected metrics but it needs a tweak:- Make sure, Prometheus can see the Job container, try query the
monitored-job - Make sure, the
DS_PROMETHEUSdashboard variable matches the name of the Datasource variable in the Grafana'sdatasource.yml, which isDS_SERVERMONITORin my case.
- Make sure, Prometheus can see the Job container, try query the
π§οΈ Tuning Implementations
To add support for a new LLM, you will need to implement on the existing abstracts, interfaces & return the domain's data models, for example LlamaCppLLM:
# %load ./src/yoga1290/rag/domain/ports/llm.py
from abc import ABC, abstractmethod
class LLM(ABC):
@abstractmethod
def generate(self, prompt: str) -> str:
"""
Generate a response from a prompt.
"""
raise NotImplementedError
# %load ./src/yoga1290/rag/infrastructure/local/llm/llama_cpp_llm.py
from yoga1290.rag.domain.ports import LLM
class LlamaCppLLM(LLM):
def __init__(
self,
model_path: str,
temperature: float = 0.15,
max_tokens: int = 450,
context_size: int = 4096,
batch_size: int = 384,
) -> None:
from langchain_community.llms import LlamaCpp
self._llm = LlamaCpp(
model_path=model_path,
temperature=temperature,
max_tokens=max_tokens,
n_ctx=context_size,
n_batch=batch_size,
verbose=False,
)
def generate(self, prompt: str) -> str:
return self._llm.invoke(prompt)
π Project & Resources
π» GitHub β source code and architecture
π¦ PyPI β installable Python package.



Top comments (0)