cookbook/08_learning/README.md
A comprehensive guide to building agents that learn, adapt, and improve.
LearningMachine is a unified learning system that enables agents to learn from every interaction. It coordinates multiple learning stores, each handling a different type of knowledge:
| Store | What It Captures | Scope | Use Case |
|---|---|---|---|
| User Profile | Structured fields (name, preferences) | Per user | Personalization |
| User Memory | Unstructured observations about users | Per user | Context, preferences |
| Session Context | Goal, plan, progress, summary | Per session | Task continuity |
| Entity Memory | Facts, events, relationships | Configurable | CRM, knowledge graph |
| Learned Knowledge | Insights, patterns, best practices | Configurable | Collective intelligence |
| Decision Log | Decisions with reasoning and alternatives | Per agent | Auditing, feedback loops |
from agno.agent import Agent
from agno.db.postgres import PostgresDb
from agno.models.openai import OpenAIResponses
# Setup
db = PostgresDb(db_url="postgresql+psycopg://ai:ai@localhost:5532/ai")
# The simplest learning agent
agent = Agent(
model=OpenAIResponses(id="gpt-5.5"),
db=db,
learning=True, # That's it!
)
# Use it
agent.print_response(
"I'm Alex, I prefer concise answers.",
user_id="[email protected]",
session_id="session_1",
)
cookbook/08_learning/
├── 00_quickstart/ # Two-minute intro
│ ├── 01_always_learn.py
│ ├── 02_agentic_learn.py
│ └── 03_learned_knowledge.py
│
├── 01_basics/ # Essential examples for every store
│ ├── 1a_user_profile_always.py
│ ├── 1b_user_profile_agentic.py
│ ├── 2a_user_memory_always.py
│ ├── 2b_user_memory_agentic.py
│ ├── 3a_session_context_summary.py
│ ├── 3b_session_context_planning.py
│ ├── 4_learned_knowledge.py
│ ├── 5a_entity_memory_always.py
│ └── 5b_entity_memory_agentic.py
│
├── 02_user_profile/ # Deep dives into user profiles
│ ├── 01_always_extraction.py
│ ├── 02_agentic_mode.py
│ └── 03_custom_schema.py
│
├── 03_session_context/ # Deep dives into session tracking
│ ├── 01_summary_mode.py
│ └── 02_planning_mode.py
│
├── 04_entity_memory/ # Deep dives into entity memory
│ ├── 01_facts_and_events.py
│ └── 02_entity_relationships.py
│
├── 05_learned_knowledge/ # Deep dives into learned knowledge
│ ├── 01_agentic_mode.py
│ └── 02_propose_mode.py
│
├── 06_quick_tests/ # Edge cases and sanity checks
│
├── 07_patterns/ # Real-world patterns
│ ├── personal_assistant.py
│ ├── research_assistant.py
│ └── support_agent.py
│
├── 08_custom_stores/ # Build your own learning store
│ ├── 01_minimal_custom_store.py
│ └── 02_custom_store_with_db.py
│
├── 09_decision_logs/ # Decision logging and auditing
│ ├── 01_basic_decision_log.py
│ └── 02_decision_log_always.py
│
└── 10_demo/ # AgentOS demo: browse learnings in the UI
├── agents.py
├── seed.py
└── run.py
git clone https://github.com/agno-agi/agno.git
cd agno
Using the setup script (requires uv):
./cookbook/08_learning/setup_venv.sh
Or manually:
python -m venv .venv
source .venv/bin/activate
uv pip install -r cookbook/08_learning/requirements.txt
# Required for accessing OpenAI models
export OPENAI_API_KEY=your-openai-api-key
Postgres stores agent sessions, memory, knowledge, and state. Install Docker Desktop and run:
./cookbook/scripts/run_pgvector.sh
Or run directly:
docker run -d \
-e POSTGRES_DB=ai \
-e POSTGRES_USER=ai \
-e POSTGRES_PASSWORD=ai \
-e PGDATA=/var/lib/postgresql \
-v pgvolume:/var/lib/postgresql \
-p 5532:5432 \
--name pgvector \
agnohq/pgvector:18
# Start with the basics
python cookbook/08_learning/01_basics/1a_user_profile_always.py
# Or run any specific example
python cookbook/08_learning/02_user_profile/03_custom_schema.py
python cookbook/08_learning/07_patterns/personal_assistant.py
An agent on interaction 1000 is fundamentally better than it was on interaction 1.
Instead of building memory, knowledge, and feedback systems separately, configure one system that handles all learning with consistent patterns.
# Level 1: Dead Simple
agent = Agent(model=model, db=db, learning=True)
# Level 2: Pick What You Want
agent = Agent(
model=model,
db=db,
learning=LearningMachine(
user_profile=True,
session_context=True,
entity_memory=False,
learned_knowledge=False,
),
)
# Level 3: Full Control
agent = Agent(
model=model,
db=db,
learning=LearningMachine(
user_profile=UserProfileConfig(
mode=LearningMode.AGENTIC,
),
session_context=SessionContextConfig(
enable_planning=True,
),
),
)
Each Learning Store can be configured to run in different modes:
from agno.learn import LearningMode
# ALWAYS (default for user_profile, session_context)
# - Automatic extraction after conversations
# - No agent tools needed
# - Extra LLM call per interaction
# AGENTIC (default for learned_knowledge)
# - Agent decides when to save via tools
# - More control, less noise
# - No extra LLM calls
# PROPOSE
# - Agent proposes, user confirms
# - Human-in-the-loop quality control
# - Good for high-stakes knowledge
Captures structured profile fields about users. Persists forever. Updated as new info is learned.
Supported modes: ALWAYS, AGENTIC
Data stored: name, preferred_name, and any custom fields you define.
See also: Memories Store for unstructured observations that don't fit fields.
from agno.agent import Agent
from agno.db.postgres import PostgresDb
from agno.learn import LearningMachine, UserProfileConfig
agent = Agent(
model=OpenAIResponses(id="gpt-5.5"),
db=PostgresDb(db_url="postgresql+psycopg://ai:ai@localhost:5532/ai"),
learning=LearningMachine(
user_profile=UserProfileConfig(
mode=LearningMode.ALWAYS,
),
),
)
# Session 1
agent.run("I'm Alice, I work at Netflix", user_id="alice")
# Session 2
agent.run("What do you know about me?", user_id="alice")
# -> "You're Alice, you work at Netflix"
Captures unstructured observations about users that don't fit into structured profile fields.
Supported modes: ALWAYS, AGENTIC
When to use: For context like "prefers detailed explanations", "works on ML projects" - observations that are useful but not structured.
from agno.learn import LearningMachine, UserMemoryConfig, LearningMode
agent = Agent(
model=OpenAIResponses(id="gpt-5.5"),
db=PostgresDb(db_url="postgresql+psycopg://ai:ai@localhost:5532/ai"),
learning=LearningMachine(
user_memory=UserMemoryConfig(
mode=LearningMode.ALWAYS,
),
),
)
# Session 1
agent.run("I prefer code examples over explanations", user_id="alice")
# Session 2 - memory persists
agent.run("Explain async/await", user_id="alice")
# Agent knows Alice prefers code examples and adapts response
Captures state and summary for the current session.
Supported modes: ALWAYS only
Data stored:
enable_planning=True)enable_planning=True)enable_planning=True)from agno.learn import LearningMachine, SessionContextConfig
agent = Agent(
model=OpenAIResponses(id="gpt-5.5"),
db=PostgresDb(db_url="postgresql+psycopg://ai:ai@localhost:5532/ai"),
learning=LearningMachine(
session_context=SessionContextConfig(
enable_planning=True,
),
),
)
# Session context automatically tracks goal, plan, progress
Captures reusable insights, patterns, and rules that apply across users and sessions.
Supported modes: AGENTIC, PROPOSE, ALWAYS
Requires a Knowledge base (vector database) for semantic search.
from agno.knowledge import Knowledge
from agno.knowledge.embedder.openai import OpenAIEmbedder
from agno.learn import LearningMachine, LearnedKnowledgeConfig, LearningMode
from agno.vectordb.pgvector import PgVector, SearchType
db_url = "postgresql+psycopg://ai:ai@localhost:5532/ai"
knowledge = Knowledge(
vector_db=PgVector(
db_url=db_url,
table_name="agent_learnings",
search_type=SearchType.hybrid,
embedder=OpenAIEmbedder(id="text-embedding-3-small"),
),
)
agent = Agent(
model=OpenAIResponses(id="gpt-5.5"),
db=db,
learning=LearningMachine(
knowledge=knowledge,
learned_knowledge=LearnedKnowledgeConfig(
mode=LearningMode.AGENTIC,
),
),
)
Captures knowledge about external entities: companies, projects, people, products, systems.
Supported modes: ALWAYS, AGENTIC
Three types of entity data:
from agno.learn import LearningMachine, EntityMemoryConfig
agent = Agent(
model=OpenAIResponses(id="gpt-5.5"),
db=PostgresDb(db_url="postgresql+psycopg://ai:ai@localhost:5532/ai"),
learning=LearningMachine(
entity_memory=EntityMemoryConfig(
namespace="global",
),
),
)
# Agent learns about entities from conversations
agent.run("Acme Corp just migrated to PostgreSQL and hired Bob as CTO")
# Later, agent can recall and use this knowledge
agent.run("What database does Acme use?")
# -> "Acme Corp uses PostgreSQL"
Records decisions the agent makes, with reasoning and alternatives considered. Useful for auditing agent behavior and building feedback loops.
Supported modes: ALWAYS, AGENTIC
Scope: Per agent - stored and retrieved by agent_id.
from agno.learn import DecisionLogConfig, LearningMachine, LearningMode
agent = Agent(
model=OpenAIResponses(id="gpt-5.5"),
db=PostgresDb(db_url="postgresql+psycopg://ai:ai@localhost:5532/ai"),
learning=LearningMachine(
decision_log=DecisionLogConfig(
mode=LearningMode.AGENTIC,
),
),
)
# In AGENTIC mode the agent gets log_decision, search_decisions,
# and record_outcome tools and decides when to use them.
Extend the base schemas with typed fields for your domain:
from dataclasses import dataclass, field
from typing import Optional
from agno.learn.schemas import UserProfile
@dataclass
class CustomerProfile(UserProfile):
"""Extended user profile for customer support."""
company: Optional[str] = field(
default=None,
metadata={"description": "Company or organization"}
)
plan_tier: Optional[str] = field(
default=None,
metadata={"description": "Subscription tier: free | pro | enterprise"}
)
# Use custom schema
learning = LearningMachine(
user_profile=UserProfileConfig(
schema=CustomerProfile,
),
)
Everything the learning system captures is browsable in the AgentOS UI and over REST. AgentOS exposes /learnings CRUD endpoints backed by the agno_learnings table, and os.agno.com renders them as dedicated Learning pages: User Profiles, User Memories, Entity Memories, Session Context, and Decision Logs.
Try it with the demo in this cookbook:
# Seed every learning store with real conversations
.venvs/demo/bin/python cookbook/08_learning/10_demo/seed.py
# Serve the AgentOS app, then connect at os.agno.com
.venvs/demo/bin/python cookbook/08_learning/10_demo/run.py
See 10_demo for the walkthrough, and cookbook/05_agent_os/learnings for a client-side tour of the REST endpoints.
Built with 💜 by the Agno team