Understanding RAG, Agentic AI, and MCP By a Real-World AI Assistant Example
After working with Large Language Models (LLMs), I was amazed by their reasoning power, but what really excited me was making LLM even more useful …
After working with Large Language Models (LLMs), I was amazed by their reasoning power, but what really excited me was making LLM even more useful …
Last weekend, I spent some time exploring how to plug C into Python, how it works, and how much it can speed up things. So …
About a year ago, I set up an Azure Function App that would fire whenever a file was uploaded to a specific container in Blob …
Making HTTP requests in Python often involves repetitive code for handling parameters, authentication, retries, and error handling. In modern applications, making HTTP requests reliably is …
When we are building systems that interact with external services like payment gateways, cloud storages, or notification systems, I think it’s essential to support different …
Python introduced Protocol in PEP 544 (Python Enhancement Proposal) and officially added it in Python 3.8. If you’re coming from a Golang background and diving …
In Python, you’ve probably come across terms like multi-threading, multi-processing, async and event loops. They can be confusing at first. What should we use? When? …
Pagination is a common requirement in web applications dealing with datasets. Developers often use SQL queries with OFFSET and LIMIT to fetch paginated records. While …
For years, I’ve been deeply immersed in the Django ecosystem, developing APIs and building applications using Django and Django Rest Framework. DRF has always worked …
In a recent project, I encountered a frustrating issue while working with PostgreSQL. I had implemented a custom function that called another function (ST_X) as …