Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

At its simplest, an AI Agent is a step up from a standard chatbot. While a chatbot is designed to talk, an agent is designed to act. Think of it like the difference between a travel guide who tells you about Paris (Chatbot) and a personal assistant who actually books your flights, reserves the hotel, and handles the dinner reservations (Agent).

The Core Components

An AI agent doesn’t just respond to a prompt. It follows a loop of reasoning to accomplish a goal. Most agents operate using these four pillars.

How it Works: The “Loop”

Unlike a single-turn conversation, an agent often works in an autonomous loop until the job is done.

Agents

localgpt

localgpt is a local AI assistant.

hindsight

hindsight is an agent memory system built to create smarter agents that learn over time. Most agent memory systems focus on recalling conversation history. Hindsight is focused on making agents that learn, not just remember.

References