This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Cognee is an open-source AI memory platform that transforms raw data into persistent knowledge graphs for AI agents. It replaces traditional RAG (Retrieval-Augmented Generation) with an ECL (Extract, Cognify, Load) pipeline combining vector search, graph databases, and LLM-powered entity extraction.
Requirements: Python 3.10 - 3.14
# Create virtual environment (recommended: uv)
uv venv && source .venv/bin/activate
# Install with pip, poetry, or uv
uv pip install -e .
# Install with dev dependencies
uv pip install -e ".[dev]"
# Install with specific extras
uv pip install -e ".[postgres,neo4j,docs]"
# Set up pre-commit hooks
pre-commit install- postgres / postgres-binary - PostgreSQL + PGVector support (also enables the Postgres session-cache backend,
CACHE_BACKEND=postgres) - neo4j - Neo4j graph database support
- neptune - AWS Neptune support
- turso - Turso vector database support
- docs - Document processing (unstructured library)
- scraping - Web scraping (Tavily, BeautifulSoup, Playwright; Keenable needs no extra — it uses the built-in httpx)
- langchain - LangChain integration
- llama-index - LlamaIndex integration
- anthropic - Anthropic Claude models
- ollama - Ollama local models
- mistral - Mistral AI models
- groq - Groq API support
- llama-cpp - Llama.cpp local inference
- huggingface - HuggingFace transformers
- aws - S3 storage backend
- redis - Redis caching
- graphiti - Graphiti-core integration
- baml - BAML structured output
- dlt - Data load tool (dlt) integration
- docling - Docling document processing, slim profile without torch (office/HTML/email/markdown/LaTeX formats)
- docling-full - Full docling install with torch-based ML models (adds PDF/image conversion through docling; conflicts with codegraph due to tree-sitter pins)
- codegraph - Code graph extraction
- evals - Evaluation tools
- deepeval - DeepEval testing framework
- posthog - PostHog analytics
- tracing - OpenTelemetry tracing
- dev - All development tools (pytest, ty, ruff, etc.)
- debug - Debugpy for debugging
# Run all tests
pytest
# Run with coverage
pytest --cov=cognee --cov-report=html
# Run specific test file
pytest cognee/tests/test_custom_model.py
# Run specific test function
pytest cognee/tests/test_custom_model.py::test_function_name
# Run async tests
pytest -v cognee/tests/integration/
# Run unit tests only
pytest cognee/tests/unit/
# Run integration tests only
pytest cognee/tests/integration/# Run ruff linter
ruff check .
# Run ruff formatter
ruff format .
# Run both linting and formatting (pre-commit)
pre-commit run --all-files
# Type checking with ty
ty check .# Using Python SDK
uv run python examples/guides/simple_cognee_example.py
# Using CLI (memory API — the primary surface)
cognee-cli remember "Your text here" # also accepts file paths / URLs
cognee-cli recall "Your question"
cognee-cli improve -d my_project # enrich/index the graph
cognee-cli forget --all # NOTE: no confirmation prompt
# Low level operations (still ship; what the memory commands call underneath)
cognee-cli add "Your text here" && cognee-cli cognify
cognee-cli search "Your query"
cognee-cli delete --all # prompts before deleting
# Launch full stack with UI
cognee-cli -uiAs of cognee 1.x the memory API is the primary surface. All functions are async.
- remember() - Store data in memory. Without
session_idit runsadd()+cognify()and thenimprove()(self_improvement=Trueby default); withsession_idit writes to the fast session cache and bridges into the graph in the background. - recall() - Query memory. Auto-routes to a search strategy unless
query_typeis passed (auto_route=Falsefalls back toHYBRID_COMPLETION). Asession_idreads the session cache first and falls through to the graph. - improve() - Enrich/index the graph: triplet embeddings, feedback weights, and (with
session_ids) bridging session Q&A and distilled learnings into the permanent graph. - forget() - Unified deletion (
data_id/dataset/dataset_id/everything=True, plusmemory_only=Trueto drop graph+vectors but keep raw files).
These still ship and are what the memory API calls underneath. Reach for them to drive one stage in isolation (custom pipeline tasks, stage-level debugging), not for ordinary ingestion or retrieval.
- add() - Ingest data (files, URLs, text) into datasets
- cognify() - Extract entities/relationships and build knowledge graph
- search() - Query knowledge using various retrieval strategies
- memify() - Enrich graph with additional context and rules
Note: Using Low level operations over core is useful in the following contexts.
- functional_relationships= is completely unreachable from remember(). So Only cognify can constrain single-target relationships.
- remember() hardcodes datasets_arg = [dataset_name]: always exactly one. Use cognify for this: cognify(datasets=["a","b","c"]) or datasets=None (every dataset the user owns.)
- remember() always runs add() first. To rebuild a graph over data already in the DB — after forget(memory_only=True), or with a new graph_model/ontology, cognify() is the only path.
- add() is like a staging area for cognify(). But remember automatically adds every time.
- search() packs skills/tools/max_iter/code_query into retriever_specific_config for you. Using recall() you hand-build that dict yourself.
- prune.prune_system(metadata=True) drops the relational DB (users, tenants, ACLs, the dataset_database registry, pipeline runs, search history.) forget() touches none of that. Full test teardown is prune's job. Improve & Memify are virtually the same, though. So no reason not to use improve.
cognee.delete is deprecated (since 0.3.9, in favor of datasets.delete_data); forget() is the v1 replacement that unifies the old delete/prune/empty_dataset paths.
recall() wraps search() — its graph path calls the same authorized search — and adds three things: rule-based query routing when query_type is omitted (regex scoring, no LLM call, so auto-routing is free), session memory as a searchable source (scope = graph / session / trace / session_context; with a bare session_id a session hit short-circuits the graph search), and normalized results tagged with a _source key. Use recall() for ordinary retrieval. Drop to search() when you need the agentic extras as first-class parameters (skills, tools, max_iter, code_query, node_type), raw SearchResult objects instead of tagged entries, or a pinned query_type with no router in the path. Note search(session_id=...) only adds session history to the retrieval context — it never searches the session cache as a source; that is recall()-only. Full guide: docs/recall-vs-search.md.
All data flows through task-based pipelines (cognee/modules/pipelines/). Tasks are composable units that can run sequentially or in parallel. Example pipeline tasks: classify_documents, extract_graph_from_data, add_data_points.
Multiple backends are supported through adapter interfaces:
- Graph: Ladybug (default), Neo4j, Neptune, Postgres (demo) via
GraphDBInterface - Vector: LanceDB (default), PGVector, Neptune Analytics, Turso via
VectorDBInterface(ChromaDB/Qdrant/Weaviate/Milvus via community adapters) - Relational: SQLite (default), PostgreSQL
Key files:
cognee/infrastructure/databases/graph/graph_db_interface.pycognee/infrastructure/databases/vector/vector_db_interface.py
User → Dataset → Data hierarchy with permission-based filtering. Enable with ENABLE_BACKEND_ACCESS_CONTROL=True. Each user+dataset combination can have isolated graph/vector databases — but only on backends with a dataset-database handler.
Multi-tenancy support matrix (source of truth: cognee/infrastructure/databases/dataset_database_handler/supported_dataset_database_handlers.py):
| Layer | Backend | Isolated per user+dataset? | Notes |
|---|---|---|---|
| Graph | Ladybug/Kuzu (default) | ✅ | embedded, one database per dataset |
| Graph | Neo4j | ✅ | one Neo4j database per dataset inside the DBMS — requires an edition with multi-database support (Enterprise/Aura). A second handler, neo4j_aura_dev, provisions a whole Aura instance per dataset; dev/PoC only, not production-ready |
| Graph | Postgres | ✅ | graph-on-Postgres is itself a demo feature (see warning above) |
| Graph | Turso | ✅ | |
| Graph | Neptune, ladybug-remote | ❌ | requires ENABLE_BACKEND_ACCESS_CONTROL=false |
| Vector | LanceDB (default) | ✅ | |
| Vector | PGVector | ✅ | |
| Vector | Turso | ✅ | |
| Vector | Neptune Analytics | ❌ | requires ENABLE_BACKEND_ACCESS_CONTROL=false |
| Vector | Community adapters (ChromaDB, Qdrant, …) | ❌ | unless the adapter registers a handler via use_dataset_database_handler() |
| Relational | SQLite / Postgres | n/a — always shared | one relational DB holds users, ACLs, and the dataset-database registry; it is never isolated per dataset |
How it works:
- The handler is selected automatically from the configured provider (
GraphConfig.fill_derivedand the vector-config equivalent) — you never set it by hand for in-tree backends. - Both the graph and vector backends must support isolation. If either doesn't, cognee raises an
EnvironmentErrornaming the unsupported handler — with the flag on (its default), an unsupported backend is a hard error, not a silent fallback to shared databases. The fix is switching backends or settingENABLE_BACKEND_ACCESS_CONTROL=false. - New backends gain multi-tenancy by registering a
DatasetDatabaseHandlerInterfaceimplementation in the registry (or at runtime viause_dataset_database_handler()).
API Layer (cognee/api/v1/)
↓
Memory API (remember, recall, improve, forget)
↓
Low level operations (add, cognify, search, memify)
↓
Pipeline Orchestrator (cognee/modules/pipelines/)
↓
Task Execution Layer (cognee/tasks/)
↓
Domain Modules (graph, retrieval, ingestion, etc.)
↓
Infrastructure Adapters (LLM, databases)
↓
External Services (OpenAI, Ladybug, LanceDB, etc.)
NOTE: This is how the memory API flow works under the hood; it's read as a flow of data. So remember calls add(), cognify(), and improve().
remember(data) → add() → cognify() → improve() (when self_improvement=True)
remember(data, session_id=...) → session cache → background improve() bridge
recall(query) → auto-route to a SearchType → search() → permission filter → results
Key files: cognee/api/v1/remember/remember.py, cognee/api/v1/recall/recall.py, cognee/api/v1/improve/improve.py, cognee/api/v1/forget/forget.py
The stages below are the Low level operations these call underneath.
add() → resolve_data_directories → ingest_data → save_data_item_to_storage → Create Dataset + Data records in relational DB
Key files: cognee/api/v1/add/add.py, cognee/tasks/ingestion/ingest_data.py
cognify() → classify_documents → extract_chunks_from_documents → extract_graph_from_data (LLM extracts entities/relationships using Instructor) → summarize_text → add_data_points (store in graph + vector DBs)
Key files:
cognee/api/v1/cognify/cognify.pycognee/tasks/graph/extract_graph_from_data.pycognee/tasks/storage/add_data_points.py
search(query_text, query_type) → route to retriever type → filter by permissions → return results
Available search types (from cognee/modules/search/types/SearchType.py), passed as query_type to recall() or search():
- HYBRID_COMPLETION (default) - Document passages plus entity neighbourhoods, then LLM completion
- GRAPH_COMPLETION - Graph traversal + LLM completion
- GRAPH_SUMMARY_COMPLETION - Uses pre-computed summaries with graph context
- GRAPH_COMPLETION_COT - Chain-of-thought reasoning over graph
- GRAPH_COMPLETION_CONTEXT_EXTENSION - Extended context graph retrieval
- TRIPLET_COMPLETION - Triplet-based (subject-predicate-object) search
- RAG_COMPLETION - Traditional RAG with chunks
- CHUNKS - Vector similarity search over chunks
- CHUNKS_LEXICAL - Lexical (keyword) search over chunks
- SUMMARIES - Search pre-computed document summaries
- CYPHER - Direct Cypher query execution (requires
ALLOW_CYPHER_QUERY=True) - NATURAL_LANGUAGE - Natural language to structured query
- TEMPORAL - Time-aware graph search
- FEELING_LUCKY - Automatic search type selection
- CODING_RULES - Code-specific search rules
recall() picks one of these automatically when query_type is omitted. The CLI is narrower: cognee-cli recall --query-type accepts only the choices in cognee/cli/config.py:SEARCH_TYPE_CHOICES and defaults to HYBRID_COMPLETION; the rest are SDK-only.
Key files:
cognee/api/v1/search/search.pycognee/modules/retrieval/context_providers/TripletSearchContextProvider.pycognee/modules/search/types/SearchType.py
- DataPoint - Base class for all graph nodes (versioned, with metadata)
- Edge - Graph relationships (source, target, relationship type)
- Triplet - (Subject, Predicate, Object) representation
- KnowledgeGraph - Container for nodes and edges
- Node - Entity (id, name, type, description)
- Edge - Relationship (source_node_id, target_node_id, relationship_name)
Unified interface for multiple LLM providers: OpenAI, Anthropic, Gemini, Ollama, Mistral, Bedrock. Uses Instructor for structured output extraction.
Factory pattern for embeddings: cognee/infrastructure/databases/vector/embeddings/get_embedding_engine.py
Support for PDF, DOCX, CSV, images, audio, code files in cognee/infrastructure/files/
Copy .env.template to .env and configure:
# Minimal setup (defaults to OpenAI + local file-based databases)
LLM_API_KEY="your_openai_api_key"
LLM_MODEL="openai/gpt-5-mini" # Default modelImportant: If you configure only LLM or only embeddings, the other defaults to OpenAI. Ensure you have a working OpenAI API key, or configure both to avoid unexpected defaults.
Default databases (no extra setup needed):
- Relational: SQLite (metadata and state storage)
- Vector: LanceDB (embeddings for semantic search)
- Graph: Ladybug (knowledge graph and relationships)
All stored in .venv by default. Override with DATA_ROOT_DIRECTORY and SYSTEM_ROOT_DIRECTORY.
# PostgreSQL (requires postgres extra: pip install cognee[postgres])
DB_PROVIDER=postgres
DB_HOST=localhost
DB_PORT=5432
DB_USERNAME=cognee
DB_PASSWORD=cognee
DB_NAME=cognee_dbSupported in-tree: lancedb (default), pgvector, neptune_analytics, turso.
Others (ChromaDB, Qdrant, Weaviate, Milvus, …) are community adapters — install from
https://github.com/topoteretes/cognee-community and register via use_vector_adapter
before setting VECTOR_DB_PROVIDER, otherwise cognee raises
"Unsupported vector database provider".
# PGVector (requires postgres extra)
VECTOR_DB_PROVIDER=pgvector
VECTOR_DB_URL=postgresql://cognee:cognee@localhost:5432/cognee_dbSupported: ladybug (default), neo4j, neptune, ladybug-remote, postgres_demo (demo; postgres is an accepted alias)
# Neo4j (requires neo4j extra: pip install cognee[neo4j])
GRAPH_DATABASE_PROVIDER=neo4j
GRAPH_DATABASE_URL=bolt://localhost:7687
GRAPH_DATABASE_NAME=neo4j
GRAPH_DATABASE_USERNAME=neo4j
GRAPH_DATABASE_PASSWORD=yourpassword
# Remote Ladybug
GRAPH_DATABASE_PROVIDER=ladybug-remote
GRAPH_DATABASE_URL=http://localhost:8000
GRAPH_DATABASE_USERNAME=your_username
GRAPH_DATABASE_PASSWORD=your_password
# Postgres (requires postgres extra: pip install cognee[postgres])
# DEMO, not production-ready — see the warning below.
# Does not support raw Cypher queries, natural language search, or Graphiti.
# The legacy value `postgres` still resolves to this same adapter.
GRAPH_DATABASE_PROVIDER=postgres_demo
GRAPH_DATABASE_URL=postgresql+asyncpg://cognee:cognee@localhost:5432/cognee_db
⚠️ Warning: Using Postgres as a graph store is currently a demo feature and is not production-ready. Use it to demo keeping relational metadata, PGVector, and graph state in a single Postgres service, but rely on a graph-native backend such as Kuzu or Neo4j for production workloads.Interested in further development or production use of Postgres as a graph database? Write to us at social@cognee.ai to explore the options.
# Session/conversation cache backend: sqlite (default), postgres, redis, fs, tapes
CACHE_BACKEND=sqlite
# Optional explicit SQLAlchemy URL for sqlite/postgres cache backends (overrides defaults)
CACHE_DB_URL=postgresql+asyncpg://cognee:cognee@localhost:5432/cognee_db
# Session-search execution mode: concurrent (default) or sequential
SESSION_SEARCH_MODE=concurrentA session search (a search() with an active session cache) runs in one of two modes,
chosen deployment-wide by SESSION_SEARCH_MODE. There is no per-request override.
Both modes make the same two LLM calls per turn — one to analyze the turn for session context, one to answer. They differ in how those calls are sequenced:
concurrent(default) — analysis runs concurrently with retrieval and answering, so a turn costs one answer call of wall-clock time. Retrieval compensates for not having the analysis's rewritten query by running two lanes: the raw question, and a deterministic (LLM-free) rewrite built from the last two turns. Their results are merged by the retriever before context is formatted.sequential— analysis runs first, its rewritten query drives a single retrieval, and its context updates are applied before the answer is generated.
The practical difference: in sequential mode, guidance the user states this turn can influence this turn's answer. In concurrent mode it applies from the next turn onward.
Concurrent mode applies only to GraphCompletionRetriever,
HybridRetriever, CompletionRetriever (RAG_COMPLETION), and TripletRetriever
(TRIPLET_COMPLETION), and only through search(). Calling a retriever's
get_completion() directly always takes the sequential path. Subclasses, batch queries,
only_context, FEELING_LUCKY, and sessionless calls fall back to sequential mode
automatically. With AUTO_FEEDBACK=false
neither mode analyzes the turn.
Four flags trade memory features for speed. Know what each turns off before flipping it:
| Flag (default) | Turns off when disabled | Cost of disabling |
|---|---|---|
PERSONALIZATION_ENABLED=false |
Per-user preference personalization: one UserPreference node per user+dataset with weighted prefers edges, retrieval ranking multiplied by those weights, stated-preference text injected into LLM prompts, the per-turn 1-5 rating question, and the improve() stage that folds ratings into weights |
Off by default, so nothing is lost until you opt in. When on, ranking strength comes from PERSONALIZATION_INFLUENCE (default 0.3, valid range [0, 1] — out-of-range values are rejected at startup); personalization also needs a user and a single resolved dataset in context, so multi-dataset searches never personalize |
CACHING=true |
The entire session-memory layer: remember(session_id=...) raises, recall() loses session history and the session-cache short-circuit, agent_memory session options error, and AUTO_FEEDBACK becomes moot |
You lose the fast session write path and self-improving memory — only the slower add+cognify path remains. Do not benchmark cognee with this off; that measures cognee with its memory layer removed |
AUTO_FEEDBACK=true |
The automatic per-turn analysis: one structured-output LLM call after each answered query that detects implicit feedback, guides later retrievals, and feeds improve()'s agent-context lessons |
Memory stops self-tuning from conversation signals. Session store/recall itself keeps working — this is the flag to disable for low-latency reads, since the per-turn LLM call dominates default read latency |
DATASET_QUEUE_ENABLED=true |
The per-process cap on concurrent datasets (DATASET_QUEUE_MAX_CONCURRENT, default 6), subprocess-engine teardown on scope exit, and pinning of in-use engines against cache eviction |
Saves minor per-operation overhead, but embedded engines become unbounded: file-lock leaks and mid-use engine eviction under parallel multi-dataset load. Safe only for single-dataset scripts |
AUTO_FEEDBACK is only consulted when CACHING=true. If reads feel slow on defaults, set AUTO_FEEDBACK=false and keep CACHING=true — that keeps session memory while removing the per-turn LLM call.
Supported providers: OpenAI (default), Azure OpenAI, Google Gemini, Anthropic, AWS Bedrock, Ollama, LM Studio, Custom (OpenAI-compatible APIs)
LLM_API_KEY="your_openai_api_key"
LLM_MODEL="openai/gpt-5-mini" # default; or gpt-5, gpt-4o, gpt-4o-mini, etc.
LLM_PROVIDER="openai"LLM_PROVIDER="azure"
LLM_MODEL="azure/gpt-4o-mini"
LLM_ENDPOINT="https://YOUR-RESOURCE.openai.azure.com/openai/deployments/gpt-4o-mini"
LLM_API_KEY="your_azure_api_key"
LLM_API_VERSION="2024-12-01-preview"LLM_PROVIDER="gemini"
LLM_MODEL="gemini/gemini-2.0-flash-exp"
LLM_API_KEY="your_gemini_api_key"LLM_PROVIDER="anthropic"
LLM_MODEL="claude-3-5-sonnet-20241022"
LLM_API_KEY="your_anthropic_api_key"LLM_PROVIDER="ollama"
LLM_MODEL="llama3.1:8b"
LLM_ENDPOINT="http://localhost:11434/v1"
LLM_API_KEY="ollama"
EMBEDDING_PROVIDER="ollama"
EMBEDDING_MODEL="nomic-embed-text:latest"
EMBEDDING_ENDPOINT="http://localhost:11434/api/embed"
HUGGINGFACE_TOKENIZER="nomic-ai/nomic-embed-text-v1.5"LLM_PROVIDER="custom"
LLM_MODEL="openrouter/google/gemini-2.0-flash-lite-preview-02-05:free"
LLM_ENDPOINT="https://openrouter.ai/api/v1"
LLM_API_KEY="your_api_key"LLM_PROVIDER="bedrock"
LLM_MODEL="anthropic.claude-3-sonnet-20240229-v1:0"
AWS_REGION="us-east-1"
AWS_ACCESS_KEY_ID="your_access_key"
AWS_SECRET_ACCESS_KEY="your_secret_key"
# Optional for temporary credentials:
# AWS_SESSION_TOKEN="your_session_token"LLM_RATE_LIMIT_ENABLED=true
LLM_RATE_LIMIT_REQUESTS=60 # Requests per interval
LLM_RATE_LIMIT_INTERVAL=60 # Interval in seconds# LLM_INSTRUCTOR_MODE controls how structured data is extracted
# Each LLM has its own default (e.g., gpt-4o models use "json_schema_mode")
# Override if needed:
LLM_INSTRUCTOR_MODE="json_schema_mode" # or "tool_call", "md_json", etc.# litellm_native (default): plain litellm, schema-native response_format
# with prompted-JSON fallback — no instructor in the call path
STRUCTURED_OUTPUT_FRAMEWORK="litellm_native"
# Or use Instructor (legacy, via litellm)
STRUCTURED_OUTPUT_FRAMEWORK="instructor"
# Or use BAML (requires baml extra: pip install cognee[baml])
STRUCTURED_OUTPUT_FRAMEWORK="baml"
BAML_LLM_PROVIDER=openai
BAML_LLM_MODEL="gpt-4o-mini"
BAML_LLM_API_KEY="your_api_key"# Local filesystem (default)
STORAGE_BACKEND="local"
# S3 (requires aws extra: pip install cognee[aws])
STORAGE_BACKEND="s3"
STORAGE_BUCKET_NAME="your-bucket-name"
AWS_REGION="us-east-1"
AWS_ACCESS_KEY_ID="your_access_key"
AWS_SECRET_ACCESS_KEY="your_secret_key"
DATA_ROOT_DIRECTORY="s3://your-bucket/cognee/data"
SYSTEM_ROOT_DIRECTORY="s3://your-bucket/cognee/system"- New Task Type: Create task function in
cognee/tasks/, return Task object, register in pipeline - New Database Backend: Implement
GraphDBInterfaceorVectorDBInterfaceincognee/infrastructure/databases/ - New LLM Provider: Add configuration in LLM config (uses litellm)
- New Document Processor: Extend loaders in
cognee/modules/data/processing/ - New Search Type: Add to
SearchTypeenum and implement retriever incognee/modules/retrieval/ - Custom Graph Models: Define Pydantic models extending
DataPointin your code
Cognee supports ontology-based entity extraction to ground knowledge graphs in standardized semantic frameworks (e.g., OWL ontologies).
Configuration:
ONTOLOGY_RESOLVER=rdflib # Default: uses rdflib and OWL files
MATCHING_STRATEGY=fuzzy # Default: fuzzy matching with 80% similarity
ONTOLOGY_FILE_PATH=/path/to/your/ontology.owl # Full path to ontology fileImplementation: cognee/modules/ontology/
IMPORTANT: Always branch from dev, not main. The dev branch is the active development branch.
git checkout dev
git pull origin dev
git checkout -b feature/your-feature-nameCore-team PRs must reference a Linear issue. Put the issue key (e.g. COG-123)
in the PR title or the branch name so Linear links the PR to its ticket. This is
enforced by the Require Linear issue workflow (linear-issue-check), a required
status check. Fork / external-contributor PRs are exempt (the check skips them), so
this rule applies only to internal PRs.
- Formatter: Ruff (configured in
pyproject.toml) - Line length: 100 characters
- String quotes: Use double quotes
"not single quotes'(enforced by ruff-format) - Pre-commit hooks: Run ruff linting and formatting automatically
- Type hints: Encouraged (ty checks enabled)
- Important: Always run
pre-commit run --all-filesbefore committing to catch formatting issues
- Subject line (required):
- The format is (type): (short summary)
- Write summary as if it is giving an instruction (e.g., "Fix bug" instead of "Fixed bug")
- 50 chars or less
- Capitalize first char of summary
- Do NOT end with a period
- Body (optional):
- Description: Explain the motivation behind the change, what problem it solves, and any relevant background.
- Use the body to explain what and why, not how. The body of the commit message should explain why the change was made and what problem it solves. You don't need to explain how the code works, as the code itself should be clear enough for that.
- Include issue tracking numbers where applicable. Reference an issue in at least the subject line (e.g., Fixes COG-24), making it easier to trace changes to their corresponding issue.
- Separate the subject line from the body with a blank line. This helps differentiate the short description from the detailed explanation. Generally, all commits should have separate subject and body.
Tests are organized in cognee/tests/:
unit/- Unit tests for individual modulesintegration/- Full pipeline integration testscli_tests/- CLI command teststasks/- Task-specific tests
When adding features, add corresponding tests. Integration tests should cover the full remember → recall flow (or add → cognify → search when the feature lives in one of those stages).
FastAPI application with versioned routes under /api/v1/ (routers registered in cognee/api/client.py):
/remember- Store data in memory/recall- Query memory/improve- Graph enrichment/indexing/forget- Unified deletion/add,/cognify,/search,/memify,/delete- Low level operations/datasets- Dataset management/users- Authentication (whenREQUIRE_AUTHENTICATIONis effectively true; see auth posture below)/visualize- Graph visualization server
Request bodies accept both snake_case and camelCase (cognee/api/DTO.py sets alias_generator=to_camel with populate_by_name=True). There is no /feedback route — feedback is CLI- and SDK-only.
Main functions exported from cognee/__init__.py.
Memory API (primary):
remember(data, dataset_name="main_dataset", session_id=..., self_improvement=True)- Store datarecall(query_text, query_type=None, datasets=..., top_k=15, session_id=...)- Query memoryimprove(dataset="main_dataset", session_ids=..., node_name=...)- Enrich/index the graphforget(data_id=..., dataset=..., dataset_id=..., everything=False, memory_only=False)- Remove data
Low level operations:
add(data, dataset_name)- Ingest datacognify(datasets)- Build knowledge graphsearch(query_text, query_type)- Query knowledgememify(extraction_tasks, enrichment_tasks)- Enrich graphdelete(data_id)- Remove data (deprecated since 0.3.9)
Supporting:
config()- Configuration managementdatasets()- Dataset operationsserve(url)/disconnect()- Point the SDK at a running instance
All functions are async - use await or asyncio.run(). See examples/advanced_guides/remember_recall_improve_example.py for permanent memory, session memory, and the sync between them.
Several security environment variables in .env:
ACCEPT_LOCAL_FILE_PATH- Allow local file paths (default: True)ALLOW_HTTP_REQUESTS- Allow HTTP requests from Cognee (default: True)ALLOW_CYPHER_QUERY- Allow raw Cypher queries (default: True)ENABLE_BACKEND_ACCESS_CONTROL- Multi-tenant isolation (default: True). Whentrue, API auth is required and per-user/dataset DB isolation is enabled. Whenfalse, single-user mode: shared DBs and auth off unless overridden.REQUIRE_AUTHENTICATION- Explicit auth override. Unset (default): followsENABLE_BACKEND_ACCESS_CONTROL.falseis ignored whenENABLE_BACKEND_ACCESS_CONTROL=true. For a single-user deployment with auth off, setENABLE_BACKEND_ACCESS_CONTROL=false(and optionallyREQUIRE_AUTHENTICATION=false).
For production deployments, review and tighten these settings.
from cognee.modules.pipelines.tasks.Task import Task
async def my_custom_task(data):
# Your logic here
processed_data = process(data)
return processed_data
# Use in pipeline
task = Task(my_custom_task)from cognee.infrastructure.databases.graph import get_graph_engine
from cognee.infrastructure.databases.vector import get_vector_engine_async
graph_engine = await get_graph_engine()
vector_engine = await get_vector_engine_async()from cognee.infrastructure.llm.get_llm_client import get_llm_client
llm_client = get_llm_client()
response = await llm_client.acreate_structured_output(
text_input="Your prompt",
system_prompt="System instructions",
response_model=YourPydanticModel
)Datasets are project-level containers that support organization, permissions, and isolated processing workflows. Each user can have multiple datasets with different access permissions.
# Create/use a dataset
await cognee.remember(data, dataset_name="my_project")
await cognee.recall("my question", datasets=["my_project"])remember()/add() without dataset_name target the default dataset main_dataset; recall()/search() span all accessible datasets unless one is given.
Atomic knowledge units that form the foundation of graph structures. All graph nodes extend the DataPoint base class with versioning and metadata support.
Opt-in LLM check that runs as the last cognify() task (default off). After the graph is stored, it gathers the facts one hop from the entities this ingestion touched — new and pre-existing alike — asks an LLM which pairs cannot both be true, and records each confident conflict as a contradicts edge carrying both fact texts, the reason, and the confidence. It only adds edges (never rewrites or deletes) and swallows its own errors, so it can never break ingestion.
- Enable: set
CONTRADICTION_DETECTION=true. When off, the cognify pipeline is unchanged. - Tuning (env):
CONTRADICTION_CONFIDENCE_THRESHOLD(default 0.5, minimum confidence to flag),CONTRADICTION_MAX_FACTS(default 500, cap on facts per LLM call). - Applies to
remember()too — and to session memory bridged back byimprove()— since those build their graphs throughcognify(). The exception isremember(content_type="code"), which runs the separate code-graph pipeline. - Scope / limitations: only the 1-hop neighbourhood of the touched entities is compared; structural edges (
contains,is_part_of,made_from,exists_in,contradicts) and edges with an unnamed endpoint are skipped; the temporal cognify path is not covered.
Supported code files (.py, .go, .ts, .java, .rs, … — the extension list lives on code_loader) are recognized at add time through the loader system: the code loader claims the file, stores it under its real extension, and ingest_data tags the record with system_metadata = {"source": "code"}. Cognify then routes such items down the CODE route, which runs the deterministic enola code graph pipeline per file — typed CodeSymbol/CodeModule/… nodes with calls/imports/has_method edges, no LLM calls.
- Search: code is searchable through
SearchType.CODEonly (deterministic graph operations viacode_query). Completion/chunk search types (GRAPH_COMPLETION,CHUNKS,RAG_COMPLETION) do not cover code — the route produces no chunks and no embeddings. - Opt-out per add:
preferred_loaders={"text_loader": {}}treats a code file as a plain document (chunking + LLM extraction). - Whole repositories:
remember(content_type="code")remains the repo-level path (cross-file edges); the CODE route is per-file.
Multi-tenant architecture with users, roles, and Access Control Lists (ACLs):
- Read, write, delete, and share permissions per dataset
- Enable with
ENABLE_BACKEND_ACCESS_CONTROL=True - Supports isolated graph/vector databases per user+dataset — backend support varies; see the multi-tenancy support matrix under "Multi-Tenant Access Control" above
Launch visualization server:
# Via CLI
cognee-cli -ui # Launches full stack with UI at http://localhost:3000
# Via Python
from cognee.api.v1.visualize import visualization_server
shutdown = visualization_server(port=8080) # synchronous; returns a shutdown callable- Set
LITELLM_LOG="DEBUG"for verbose LLM logs (default: "ERROR") - Enable debug mode:
ENV="development"orENV="debug" - Disable telemetry:
TELEMETRY_DISABLED=1 - Check logs in structured format (uses structlog)
- Use
debugpyoptional dependency for debugging:pip install cognee[debug]
Slow search/recall on default settings
- Issue: Each answered query on the session path makes one structured-output LLM call for automatic feedback analysis
- Solution: Set
AUTO_FEEDBACK=false(keepCACHING=trueso session memory stays on); see "Memory & Performance Tuning Flags"
Ollama + OpenAI Embeddings NoDataError
- Issue: Mixing Ollama with OpenAI embeddings can cause errors
- Solution: Configure both LLM and embeddings to use the same provider, or ensure
HUGGINGFACE_TOKENIZERis set when using Ollama
LM Studio Structured Output
- Issue: LM Studio requires explicit instructor mode
- Solution: Set
LLM_INSTRUCTOR_MODE="json_schema_mode"(or appropriate mode)
Default Provider Fallback
- Issue: Configuring only LLM or only embeddings defaults the other to OpenAI
- Solution: Always configure both LLM and embedding providers, or ensure valid OpenAI API key
Permission Denied on Search
- Behavior: Returns empty list rather than error (prevents information leakage)
- Solution: Check dataset permissions and user access rights
Database Connection Issues
- Check: Verify database URLs, credentials, and that services are running
- Docker users: Use
DB_HOST=host.docker.internalfor local databases
Rate Limiting Errors
- Enable client-side rate limiting:
LLM_RATE_LIMIT_ENABLED=true - Adjust limits:
LLM_RATE_LIMIT_REQUESTSandLLM_RATE_LIMIT_INTERVAL
- Documentation
- Discord Community
- GitHub Issues
- Example Notebooks
- Research Paper - Optimizing knowledge graphs for LLM reasoning