Name: Towards AI Legal Name: Towards AI, Inc. Description: Towards AI is the world's leading artificial intelligence (AI) and technology publication. Read by thought-leaders and decision-makers around the world. Phone Number: +1-650-246-9381 Email: pub@towardsai.net
228 Park Avenue South New York, NY 10003 United States
Website: Publisher: https://towardsai.net/#publisher Diversity Policy: https://towardsai.net/about Ethics Policy: https://towardsai.net/about Masthead: https://towardsai.net/about
Name: Towards AI Legal Name: Towards AI, Inc. Description: Towards AI is the world's leading artificial intelligence (AI) and technology publication. Founders: Roberto Iriondo, , Job Title: Co-founder and Advisor Works for: Towards AI, Inc. Follow Roberto: X, LinkedIn, GitHub, Google Scholar, Towards AI Profile, Medium, ML@CMU, FreeCodeCamp, Crunchbase, Bloomberg, Roberto Iriondo, Generative AI Lab, Generative AI Lab VeloxTrend Ultrarix Capital Partners Denis Piffaretti, Job Title: Co-founder Works for: Towards AI, Inc. Louie Peters, Job Title: Co-founder Works for: Towards AI, Inc. Louis-François Bouchard, Job Title: Co-founder Works for: Towards AI, Inc. Cover:
Towards AI Cover
Logo:
Towards AI Logo
Areas Served: Worldwide Alternate Name: Towards AI, Inc. Alternate Name: Towards AI Co. Alternate Name: towards ai Alternate Name: towardsai Alternate Name: towards.ai Alternate Name: tai Alternate Name: toward ai Alternate Name: toward.ai Alternate Name: Towards AI, Inc. Alternate Name: towardsai.net Alternate Name: pub.towardsai.net
5 stars – based on 497 reviews

Frequently Used, Contextual References

TODO: Remember to copy unique IDs whenever it needs used. i.e., URL: 304b2e42315e

Resources

Our 15 AI experts built the most comprehensive, practical, 90+ lesson courses to master AI Engineering - we have pathways for any experience at Towards AI Academy. Cohorts still open - use COHORT10 for 10% off.

Publication

Getting Started with LangChain: A Fun Guide for Absolute Beginners
Artificial Intelligence   Latest   Machine Learning

Getting Started with LangChain: A Fun Guide for Absolute Beginners

Last Updated on November 11, 2025 by Editorial Team

Author(s): Kapil Deshmukh

Originally published on Towards AI.

Imagine you’re building with LLMs (large language models), but every time you need prompts, memory, or tool integration, you reinvent the wheel. Enter LangChain — your LLM-powered Swiss Army knife.

Getting Started with LangChain: A Fun Guide for Absolute Beginners
Photo by Edge2Edge Media on Unsplash

Large Language Models (LLMs) like OpenAI’s GPT, DeepSeek, or Anthropic’s Claude are powerful — but let’s be honest, using them directly can get messy. Imagine writing raw prompts for every task, managing APIs, memory, vector databases, and agents on your own. 😅 That’s where LangChain comes in.

LangChain is like the Lego toolkit for LLMs: it gives you ready-made building blocks so you can quickly create AI apps without reinventing the wheel.

In this article, we’ll explore:
✅ What LangChain is
✅ Why developers use it
✅ Key components explained with examples
✅ A mini hands-on project

🌟 Why LangChain?

Think of an AI app you might want to build:

  • A chatbot that remembers past conversations
  • A research assistant that searches PDFs or the web
  • An agent that can call APIs or execute code

Without LangChain, you’d spend weeks wiring everything manually. With LangChain, you snap components together like blocks.

🧩 Key Concepts in LangChain (Explained Simply)

Here are the “Lego blocks” you’ll use most often:

  • LLMs → The brain (e.g., GPT, DeepSeek, LLaMA).
from langchain_openai import OpenAI

llm = OpenAI(temperature=0.7, openai_api_key="your_key")

This sets up your AI brain with a creative flair (temperature = randomness).

  • Prompts → The instructions you give to the model.
from langchain.prompts import PromptTemplate

prompt = PromptTemplate.from_template("Write a tweet about {topic}")

Prompts are like recipes. You tell the AI what ingredients (variables) to use.

  • Chains → Linking prompts + LLMs into a pipeline.
from langchain.chains import LLMChain

chain = LLMChain(llm=llm, prompt=prompt)
print(chain.run("LangChain basics"))

Chains let you connect multiple steps, like asking → answering → summarizing.

  • Memory → Letting the chatbot “remember” past chats.
from langchain.memory import ConversationBufferMemory

memory = ConversationBufferMemory()

Without memory, your AI is like Dory from Finding Nemo 🐟

  • Agents → Giving AI tools (search, calculator, APIs).
# Pseudocode
agent = initialize_agent(tools=[search_tool, calculator], llm=llm)
agent.run("What's 2+2 and latest AI news?")
  • Vectorstores → Long-term memory for documents.
from langchain_community.vectorstores import FAISS

vectorstore = FAISS.from_texts(docs, embeddings)

Useful for RAG (Retrieval-Augmented Generation): answering from your PDFs, websites, or databases.

🚀 A Hands-On Mini Project

from langchain_openai import OpenAI
from langchain.chains import RetrievalQA
from langchain_community.vectorstores import FAISS
from langchain.embeddings import OpenAIEmbeddings

# Step 1: LLM
llm = OpenAI(openai_api_key="your_key")

# Step 2: Create embeddings
embeddings = OpenAIEmbeddings(openai_api_key="your_key")

# Step 3: Store notes in vector DB
docs = ["LangChain is a framework for LLMs.",
"It helps build chatbots, agents, and RAG systems."]
db = FAISS.from_texts(docs, embeddings)

# Step 4: Retrieval + QA
qa = RetrievalQA.from_chain_type(llm=llm, retriever=db.as_retriever())
print(qa.run("What is LangChain?"))

This is RAG in action, one of the most practical use case today.

👉 If you found this useful, clap 👏 and follow me for more AI tutorials!

Join thousands of data leaders on the AI newsletter. Join over 80,000 subscribers and keep up to date with the latest developments in AI. From research to projects and ideas. If you are building an AI startup, an AI-related product, or a service, we invite you to consider becoming a sponsor.

Published via Towards AI


Take our 90+ lesson From Beginner to Advanced LLM Developer Certification: From choosing a project to deploying a working product this is the most comprehensive and practical LLM course out there!

Towards AI has published Building LLMs for Production—our 470+ page guide to mastering LLMs with practical projects and expert insights!


Discover Your Dream AI Career at Towards AI Jobs

Towards AI has built a jobs board tailored specifically to Machine Learning and Data Science Jobs and Skills. Our software searches for live AI jobs each hour, labels and categorises them and makes them easily searchable. Explore over 40,000 live jobs today with Towards AI Jobs!

Note: Content contains the views of the contributing authors and not Towards AI.