⭐ 1000+ stars in 5 days. Grateful beyond words!
Learn to build AI agents locally without frameworks. Understand what happens under the hood before using production frameworks.
This repository teaches you to build AI agents from first principles using local LLMs and node-llama-cpp. By working through these examples, you'll understand:
- How LLMs work at a fundamental level
- What agents really are (LLM + tools + patterns)
- How different agent architectures function
- Why frameworks make certain design choices
Philosophy: Learn by building. Understand deeply, then use frameworks wisely.
After mastering the fundamentals, the next stage of this project walks you through re-implementing the core parts of LangChain and LangGraph in plain JavaScript using local models. This is not about building a new framework, it’s about understanding how frameworks work.
- Node.js 18+
- At least 8GB RAM (16GB recommended)
- Download models and place in
./models/folder, details in DOWNLOAD.md
npm installnode intro/intro.js
node simple-agent/simple-agent.js
node react-agent/react-agent.jsFollow these examples in order to build understanding progressively:
intro/ | Code Explanation | Concepts
What you'll learn:
- Loading and running a local LLM
- Basic prompt/response cycle
Key concepts: Model loading, context, inference pipeline, token generation
openai-intro/ | Code Explanation | Concepts
What you'll learn:
- How to call hosted LLMs (like GPT-4)
- Temperature Control
- Token Usage
Key concepts: Inference endpoints, network latency, cost vs control, data privacy, vendor dependence
translation/ | Code Explanation | Concepts
What you'll learn:
- Using system prompts to specialize agents
- Output format control
- Role-based behavior
- Chat wrappers for different models
Key concepts: System prompts, agent specialization, behavioral constraints, prompt engineering
think/ | Code Explanation | Concepts
What you'll learn:
- Configuring LLMs for logical reasoning
- Complex quantitative problems
- Limitations of pure LLM reasoning
- When to use external tools
Key concepts: Reasoning agents, problem decomposition, cognitive tasks, reasoning limitations
batch/ | Code Explanation | Concepts
What you'll learn:
- Processing multiple requests concurrently
- Context sequences for parallelism
- GPU batch processing
- Performance optimization
Key concepts: Parallel execution, sequences, batch size, throughput optimization
coding/ | Code Explanation | Concepts
What you'll learn:
- Real-time streaming responses
- Token limits and budget management
- Progressive output display
- User experience optimization
Key concepts: Streaming, token-by-token generation, response control, real-time feedback
simple-agent/ | Code Explanation | Concepts
What you'll learn:
- Function calling / tool use fundamentals
- Defining tools the LLM can use
- JSON Schema for parameters
- How LLMs decide when to use tools
Key concepts: Function calling, tool definitions, agent decision making, action-taking
This is where text generation becomes agency!
simple-agent-with-memory/ | Code Explanation | Concepts
What you'll learn:
- Persisting information across sessions
- Long-term memory management
- Facts and preferences storage
- Memory retrieval strategies
Key concepts: Persistent memory, state management, memory systems, context augmentation
react-agent/ | Code Explanation | Concepts
What you'll learn:
- ReAct pattern (Reason → Act → Observe)
- Iterative problem solving
- Step-by-step tool use
- Self-correction loops
Key concepts: ReAct pattern, iterative reasoning, observation-action cycles, multi-step agents
This is the foundation of modern agent frameworks!
Each example folder contains:
<name>.js- The working code exampleCODE.md- Step-by-step code explanation- Line-by-line breakdowns
- What each part does
- How it works
CONCEPT.md- High-level concepts- Why it matters for agents
- Architectural patterns
- Real-world applications
- Simple diagrams
AI Agent = LLM + System Prompt + Tools + Memory + Reasoning Pattern
─┬─ ──────┬────── ──┬── ──┬─── ────────┬────────
│ │ │ │ │
Brain Identity Hands State Strategy
1. intro → Basic LLM usage
2. translation → Specialized behavior (system prompts)
3. think → Reasoning ability
4. batch → Parallel processing
5. coding → Streaming & control
6. simple-agent → Tool use (function calling)
7. memory-agent → Persistent state
8. react-agent → Strategic reasoning + tool use
Simple Agent (Steps 1-5)
User → LLM → Response
Tool-Using Agent (Step 6)
User → LLM ⟷ Tools → Response
Memory Agent (Step 7)
User → LLM ⟷ Tools → Response
↕
Memory
ReAct Agent (Step 8)
User → LLM → Think → Act → Observe
↑ ↓ ↓ ↓
└──────┴──────┴──────┘
Iterate until solved
helper/prompt-debugger.js
Utility for debugging prompts sent to the LLM. Shows exactly what the model sees, including:
- System prompts
- Function definitions
- Conversation history
- Context state
Usage example in simple-agent/simple-agent.js
ai-agents/
├── README.md ← You are here
├─ examples/
├── 01_intro/
│ ├── intro.js
│ ├── CODE.md
│ └── CONCEPT.md
├── 02_openai-intro/
│ ├── openai-intro.js
│ ├── CODE.md
│ └── CONCEPT.md
├── 03_translation/
│ ├── translation.js
│ ├── CODE.md
│ └── CONCEPT.md
├── 04_think/
│ ├── think.js
│ ├── CODE.md
│ └── CONCEPT.md
├── 05_batch/
│ ├── batch.js
│ ├── CODE.md
│ └── CONCEPT.md
├── 06_coding/
│ ├── coding.js
│ ├── CODE.md
│ └── CONCEPT.md
├── 07_simple-agent/
│ ├── simple-agent.js
│ ├── CODE.md
│ └── CONCEPT.md
├── 08_simple-agent-with-memory/
│ ├── simple-agent-with-memory.js
│ ├── memory-manager.js
│ ├── CODE.md
│ └── CONCEPT.md
├── 09_react-agent/
│ ├── react-agent.js
│ ├── CODE.md
│ └── CONCEPT.md
├── helper/
│ └── prompt-debugger.js
├── models/ ← Place your GGUF models here
└── logs/ ← Debug outputs
After mastering the fundamentals above, Phase 2 takes you from scratch examples to production-grade framework design. You'll rebuild core concepts from LangChain and LangGraph to understand how real frameworks work internally.
A lightweight but complete agent framework with:
- Runnable Interface, The composability pattern that powers everything
- Message System, Typed conversation structures (Human, AI, System, Tool)
- Chains, Composing multiple operations into pipelines
- Memory, Persistent state across conversations
- Tools, Function calling and external integrations
- Agents, Decision-making loops (ReAct, Tool-calling)
- Graphs, State machines for complex workflows (LangGraph concepts)
Tutorial-first: Step-by-step lessons with exercises
Implementation-driven: Build each component yourself
Framework-compatible: Learn patterns used in LangChain.js
tutorial/
├── 01-foundation/ # 1. Core Abstractions
│ ├── 01-runnable/
│ │ ├── lesson.md # Why Runnable matters
│ │ ├── exercises/ # Hands-on practice
│ │ └── solutions/ # Reference implementations
│ ├── 02-messages/ # Structuring conversations
│ ├── 03-llm-wrapper/ # Wrapping node-llama-cpp
│ └── 04-context/ # Configuration & callbacks
│
├── 02-composition/ # 2. Building Chains
│ ├── 01-prompts/ # Template system
│ ├── 02-parsers/ # Structured outputs
│ ├── 03-llm-chain/ # Your first chain
│ ├── 04-piping/ # Composition patterns
│ └── 05-memory/ # Conversation state
│
├── 03-agency/ # 3. Tools & Agents
│ ├── 01-tools/ # Function definitions
│ ├── 02-tool-executor/ # Safe execution
│ ├── 03-simple-agent/ # Basic agent loop
│ ├── 04-react-agent/ # Reasoning + Acting
│ └── 05-structured-agent/ # JSON mode
│
└── 04-graphs/ # 4. State Machines
├── 01-state-basics/ # Nodes & edges
├── 02-channels/ # State management
├── 03-conditional-edges/ # Dynamic routing
├── 04-executor/ # Running workflows
├── 05-checkpointing/ # Persistence
└── 06-agent-graph/ # Agents as graphs
src/
├── core/ # Runnable, Messages, Context
├── llm/ # LlamaCppLLM wrapper
├── prompts/ # Template system
├── chains/ # LLMChain, SequentialChain
├── tools/ # BaseTool, built-in tools
├── agents/ # AgentExecutor, ReActAgent
├── memory/ # BufferMemory, WindowMemory
└── graph/ # StateGraph, CompiledGraph
Understanding beats using: When you know how frameworks work internally, you can:
- Debug issues faster
- Customize behavior confidently
- Make architectural decisions wisely
- Build your own extensions
- Read framework source code fluently
Learn once, use everywhere: The patterns you'll learn (Runnable, composition, state machines) apply to:
- LangChain.js - You'll understand their abstractions
- LangGraph.js - You'll grasp state management
- Any agent framework - Same core concepts
- Your own projects - Build custom solutions
After completing the fundamentals (intro → react-agent), start the tutorial:
# Start with the foundation
cd tutorial/01-foundation/01-runnable
lesson.md # Read the lesson
node exercises/01-*.js # Complete exercises
node solutions/01-*-solution.js # Check your workEach lesson includes:
- Conceptual explanation, Why it matters
- Code walkthrough, How to build it
- Exercises, Practice implementing
- Solutions, Reference code
- Real-world examples, Practical usage
Time commitment: ~8 weeks, 3-5 hours/week
By the end, you'll have:
- Built a working agent framework from scratch
- Understood how LangChain/LangGraph work internally
- Mastered composability patterns
- Created reusable components (tools, chains, agents)
- Implemented state machines for complex workflows
- Gained confidence to use or extend any framework
Then: Use LangChain.js in production, knowing exactly what happens under the hood.
- LLMs are stateless: Context must be managed explicitly
- System prompts shape behavior: Same model, different roles
- Function calling enables agency: Tools transform text generators into agents
- Memory is essential: Agents need to remember across sessions
- Reasoning patterns matter: ReAct > simple prompting for complex tasks
- Performance matters: Parallel processing, streaming, token limits
- Debugging is crucial: See exactly what the model receives
- The Runnable pattern: Why everything in frameworks uses one interface
- Composition over configuration: Building complex systems from simple parts
- Message-driven architecture: How frameworks structure conversations
- Chain abstraction: Connecting prompts, LLMs, and parsers seamlessly
- Tool orchestration: Safe execution with timeouts and error handling
- Agent execution loops: The mechanics of decision-making agents
- State machines: Managing complex workflows with graphs
- Production patterns: Error handling, retries, streaming, and debugging
Now that you understand the fundamentals, frameworks like LangChain, CrewAI, or AutoGPT provide:
- Pre-built reasoning patterns and agent templates
- Extensive tool libraries and integrations
- Production-ready error handling and retries
- Multi-agent orchestration
- Observability and monitoring
- Community extensions and plugins
You'll use them better because you know what they're doing under the hood.
- node-llama-cpp: GitHub
- Model Hub: Hugging Face
- GGUF Format: Quantized models for local inference
This is a learning resource. Feel free to:
- Suggest improvements to documentation
- Add more example patterns
- Fix bugs or unclear explanations
- Share what you built!
Educational resource - use and modify as needed for learning.
Built with ❤️ for people who want to truly understand AI agents
Start with intro/ and work your way through. Each example builds on the previous one. Read both CODE.md and CONCEPT.md for full understanding.
Happy learning!