Get AI summaries of any video or article — Sign up free

LangChain — Topic Summaries

AI-powered summaries of 26 videos about LangChain.

26 summaries

No matches found.

GPT-4 & LangChain Tutorial: How to Chat With A 56-Page PDF Document (w/Pinecone)

Chat with data · 3 min read

A practical architecture for turning a long PDF into a chat-ready assistant hinges on two phases: ingest the document into a vector database, then...

PDF ChatbotLangChainEmbeddings

Structured Output in LangChain | Generative AI using LangChain | Video 5 | CampusX

CampusX · 3 min read

Structured output in LangChain is the practical bridge that lets large language models return data in a predictable format—so databases, APIs, and...

Structured OutputLangChainTypedDict

LangChain - Using Hugging Face Models locally (code walkthrough)

Sam Witteveen · 2 min read

Running Hugging Face models locally inside LangChain is the practical workaround when Hugging Face Hub access fails—especially for conversational...

LangChainHugging Face HubLocal Transformers

AI vs ML vs DL vs Generative Ai

Krish Naik · 3 min read

Generative AI sits at the top of a ladder that starts with AI and narrows through machine learning and deep learning—then expands again into models...

AI vs ML vs DLGenerative AITransformers

Ollama meets LangChain

Sam Witteveen · 2 min read

Running Ollama models locally turns LangChain into an on-device workflow: Python code can call a local LLaMA-2 instance through an API, generate...

OllamaLangChainLocal LLM

LangChain + Retrieval Local LLMs for Retrieval QA - No OpenAI!!!

Sam Witteveen · 2 min read

Getting rid of OpenAI entirely for Retrieval QA with LangChain is feasible, but the quality hinges on the local LLM’s context limits, prompt format...

Retrieval QALangChainLocal LLMs

7-End To End Advanced RAG Project using Open Source LLM Models And Groq Inferencing engine

Krish Naik · 2 min read

The core takeaway is an end-to-end RAG (retrieval-augmented generation) app built with open-source LLMs, where web content is scraped, chunked,...

RAG PipelineLangChainGroq Inference

Function Calling with Local Models & LangChain - Ollama, Llama3 & Phi-3

Sam Witteveen · 2 min read

Running function calling and structured JSON outputs locally is practical with smaller open models—especially Llama 3 8B on Ollama—and it enables...

Local Function CallingOllamaLangChain

Using LangChain Output Parsers to get what you want out of LLMs

Sam Witteveen · 2 min read

LLM apps fail most often when they accept whatever text a model happens to generate instead of forcing that output into a structure the application...

Output ParsingLangChainPydantic Schemas

Private GPT4All : Chat with PDF with Local & Free LLM using GPT4All, LangChain & HuggingFace

Venelin Valkov · 2 min read

Running a local, privacy-friendly “chat with your PDF” pipeline is practical with GPT4All—provided the workflow is built around retrieval (embeddings...

Local PDF Q&ARetrieval-Augmented GenerationGPT4AllJ

8-Building Gen AI Powered App Using Langchain And Huggingface And Mistral

Krish Naik · 2 min read

A practical end-to-end recipe for building an open-source RAG (retrieval-augmented generation) Q&A app comes together by chaining LangChain document...

RAGLangChainHugging Face

LangChain & Supabase Tutorial: How to Build a ChatGPT Chatbot For Your Website

Chat with data · 3 min read

A practical blueprint for turning a website into a ChatGPT-style chatbot hinges on one move: retrieve the most relevant chunks of your site’s text...

Website ChatbotLangChainSupabase

Advanced RAG 06 - RAG Fusion

Sam Witteveen · 3 min read

RAG Fusion aims to narrow the gap between what users type and what they actually mean by turning one user query into several targeted search queries,...

RAG FusionQuery RewritingReciprocal Rank Fusion

Gemma 2 - Local RAG with Ollama and LangChain

Sam Witteveen · 3 min read

Running a fully local RAG pipeline with Gemma 2 is practical—and the fastest path starts with a clean indexing step, local embeddings, and a...

Local RAGGemma 2Ollama

Getting Started With Nvidia NIM-Building RAG Document Q&A With Nvidia NIM And Langchain

Krish Naik · 2 min read

NVIDIA NIM is positioned as a fast, scalable way to deploy generative AI through inference microservices, letting developers call multiple model...

NVIDIA NIMRAGLangChain

Information Extraction with LangChain & Kor

Sam Witteveen · 2 min read

Turning messy text into structured data is the bottleneck for many NLP workflows—especially when there’s no labeled dataset to train a named-entity...

Information ExtractionLangChainKor

Comparing LLMs with LangChain

Sam Witteveen · 3 min read

Choosing a “good for production” large language model isn’t about picking the biggest name—it’s about matching model behavior to the task. A...

Model EvaluationLangChainInstruction Tuning

HOW to Make Conversational Form with LangChain | LangChain TUTORIAL

Sam Witteveen · 2 min read

Conversational forms don’t have to feel like web-page data entry. By extracting structured fields from free-form chat and then asking only what’s...

Conversational FormLangChainPydantic Extraction

GPT-4 Vision: How to use LangChain with Multimodal AI to Analyze Images in Financial Reports

Chat with data · 3 min read

Financial reports often hide the real answers inside tables, charts, and other images—not in the surrounding text. The core takeaway is a practical...

Multimodal RAGGPT-4VLangChain

Easy RAG Setup - Load Anything into Context - Mistral 7B / ChromaDB / LangChain

All About AI · 2 min read

A practical RAG (retrieval-augmented generation) pipeline can be built in roughly 90 lines of code by pairing LangChain with ChromaDB for vector...

RAG SetupLangChainChromaDB

Local Gemma 4 with OpenCode & llama.cpp | Build a Local RAG with LangChain | 🔴 Live

Venelin Valkov · 3 min read

A local RAG app built around Gemma 4 can work surprisingly well on a single machine—but getting reliable retrieval depends less on the chat model and...

Local RAGGemma 4llama.cpp

Analyzing Cryptocurrency Sentiment on Twitter with LangChain and ChatGPT | CryptoGPT

Venelin Valkov · 2 min read

CryptoGPT’s sentiment pipeline turns an author’s Twitter activity into daily sentiment scores by combining LangChain with ChatGPT and forcing...

Crypto SentimentLangChainChatGPT Prompting

Build Private Chatbot wtih LangChain, Ollama and Qwen 2.5 | Local AI App with Private LLM

Venelin Valkov · 3 min read

A fully local “private chatbot” workflow can be built by combining LangChain’s message orchestration (via LangGraph), Ollama for on-device model...

Local AI ChatbotLangChainLangGraph

Build Local Long-Running AI Agent (Stop Your Agents from Getting Lost) | LangChain, Ollama, Pydantic

Venelin Valkov · 2 min read

Long-running AI agents often lose their footing as tasks stretch across multiple context windows—hallucinations creep in, code can be rewritten or...

Long-Running AgentsCheckpointingLangChain

Build Private AI Assistant That Actually Remembers | Chatbot Memory with Ollama, LangChain & SQLite

Venelin Valkov · 3 min read

A fully local chatbot can keep “memory” across restarts by writing each conversation turn into a local SQL database and re-injecting that history...

Chatbot MemoryOllamaLangChain

How RAG Finds Answers in Millions of Documents | Embeddings, Vector Databases, LangChain & Supabase

Venelin Valkov · 3 min read

Retrieval in RAG hinges on one practical step: turning a user question into a vector and then finding the most semantically similar document chunks...

RAG RetrievalEmbeddingsCosine Similarity