Skip to main content
Welcome to the Worlds Academy.

Beyond retrieval

Most AI applications utilize RAG (Retrieval-Augmented Generation). In RAG, the agent searches for relevant documents, reads them, and then generates an answer. This approach is similar to an agent having a bookshelf it can consult, but it lacks a structured, persistent internal model of the information. Worlds Platform provides a stateful memory layer. A “World” is a stateful memory environment. Instead of storing flat text documents, Worlds organizes information as a Graph.

Functional comparison

FeatureTraditional RAGWorlds Platform
Data structureFlat text / EmbeddingsStructured Graph (RDF)
PersistenceSession-based or staticTruly persistent & stateful
ReasoningVector similaritySymbolic logic, via SPARQL
InteractionRead-only retrievalDynamic updates & tool-calling

Why “Worlds”?

The term “Worlds” represents the environment where your AI agent operates. Just as humans understand their surroundings through relationships (identity, location, ownership), an AI agent uses a World to maintain a consistent, structured understanding of its context. For a deeper dive into the underlying structures of these environments, refer to our Knowledge Graphs guide.

Memory types

Worlds mirrors human memory systems to provide a complete “memory stack” for autonomous agents:
Memory typeAgent perspectiveWorlds implementation
SemanticWhat it knowsRDF Store: Structured facts and reasoning.
EpisodicWhat it didAppend-only Log: Temporal history of events.
WorkingWhat it is processingContext Window: Live distillation of focus.
ProceduralWhat it can doTools: Skills for graph and agent operations.
SensoryWhat it perceivesIngestion: Raw data streams and vector indexing.
Continue to learn about the building blocks of these environments in Symbolic graph architecture.