AIAny
AI Agent2023
Icon for item

Cognee

Gives AI agents persistent long-term memory: ingests documents in any format and continuously builds a self-hosted knowledge graph fusing vector embeddings, graph reasoning, and ontology grounding, so agents recall and reason over connected facts.

Introduction

Most retrieval setups treat memory as a flat vector store: chunk, embed, fetch the nearest neighbors, hope the context is enough. The harder problem is that agents forget what they learned last session and can't reason over how facts connect. Cognee reframes memory as a knowledge graph that an agent grows over time, so recall becomes a graph traversal rather than a similarity lookup, and connections between facts survive across sessions.

What Sets It Apart
  • Graph + vector, not either/or: documents become both semantically searchable embeddings and relationally linked graph nodes, so a query can follow relationships instead of returning isolated chunks.
  • A four-verb memory API: Remember, Recall (with auto-routing that picks the search strategy), Forget, and Improve (learning from feedback) — memory operations are first-class rather than bolted onto a vector DB.
  • Self-hosted and traceable: the graph runs on your infrastructure with audit trails and OTEL telemetry, and ontology grounding keeps the structure coherent as it grows rather than drifting into noise.
Who It's For

Great fit if you're building agents that need to accumulate knowledge across many sessions, share memory between agents, or reason over how entities relate — and you want that graph on your own infrastructure. Look elsewhere if you only need single-turn RAG over a static corpus; running and maintaining a knowledge graph plus its ontology is meaningful overhead that a plain vector store avoids. A managed Cognee Cloud option exists if you want the model without operating the graph yourself.

Information

  • Websitegithub.com
  • Organizationstopoteretes, Cognee
  • Authorstopoteretes, Cognee contributors
  • Published date2023/08/16

More Items

Turns fragile, implicit search progress into explicit, persistent, shared state for multi-agent information seeking — externalizes progress as Frontier Task, Evidence Graph, Coverage Map and Failure Memory, and uses pipeline-parallel scheduling plus a middleware harness to avoid repeated failed searches and improve utilization and throughput.

GitHub
AI Agent2026

Provides a lightweight Python harness that turns LLMs into working agents with tool-use, skills, persistent memory, permission controls and multi-agent coordination. Ships with a CLI/React TUI, 43+ built-in tools, a plugin/skill system and the ohmo personal-agent for chat gateways. Best for developers prototyping agent workflows and multi-agent experiments.

GitHub
AI Client2025

Turns Chromium into a local-first AI browser with an embedded assistant that can summarise pages, extract structured data, automate web tasks, and run scheduled agents. Built as an open-source Chromium fork with 53+ built-in browser tools, 40+ app integrations, and support for BYO AI keys or fully local models (Ollama / LM Studio).