Blog Archives: Blog (page 3)

Build Your Own LLM Chatbot with Python & LangChain (Part 4)

Build Your Own LLM Chatbot with Python & LangChain (Part 4)

Add a Streamlit-based web UI to your LLM chatbot — session management, interactive chat window, and seamless integration with your existing LangChain backend.

Continue Reading
Build Your Own LLM Chatbot with Python & LangChain (Part 3)

Build Your Own LLM Chatbot with Python & LangChain (Part 3)

Add Retrieval-Augmented Generation (RAG) to your LLM chatbot — ingest PDFs and Wikipedia pages into a vector database and retrieve context dynamically.

Continue Reading
Build Your Own LLM Chatbot with Python & LangChain (Part 2)

Build Your Own LLM Chatbot with Python & LangChain (Part 2)

Learn how to build a context-aware LLM chatbot with Python and LangChain, managing conversation memory, generation parameters, and robust logging.

Continue Reading
Build Your Own LLM Chatbot with Python & LangChain (Part 1)

Build Your Own LLM Chatbot with Python & LangChain (Part 1)

Build a production-ready LLM chatbot with Python and LangChain. Step-by-step guide to scalable, configurable architecture for real-world applications.

Continue Reading
Building a Python CLI with Click: A Cleaner Approach to the Command Pattern

Building a Python CLI with Click: A Cleaner Approach to the Command Pattern

Learn how the Click library simplifies Python CLI development — cleaner commands, built-in type validation, and no shared execute() boilerplate.

Continue Reading
How to Create Cron Jobs in Python for Your Applications

How to Create Cron Jobs in Python for Your Applications

Learn how to build a generic, configurable cron job class in Python with APScheduler — run periodic tasks in the background with clean scheduling, logging, and error handling.

Continue Reading
Logging in a Flask Application with Loguru

Logging in a Flask Application with Loguru

Learn how to centralize logging in a Flask application with Loguru, including stdout/file outputs and standard logging interception.

Continue Reading