Files
topoteretes--cognee/examples/demos/remember_recall_improve_example.py
wehub-resource-sync c889a57b6b
Test Suites / Build CI Environment (push) Has been cancelled
Test Suites / Basic Tests (push) Has been cancelled
Test Suites / End-to-End Tests (push) Has been cancelled
Test Suites / CLI Tests (push) Has been cancelled
Test Suites / Slow End-to-End Tests (push) Has been cancelled
Test Suites / Graph Database Tests (push) Has been cancelled
Test Suites / Vector DB Tests (push) Has been cancelled
Test Suites / Temporal Graph Test (push) Has been cancelled
Test Suites / Search Test on Different DBs (push) Has been cancelled
Test Suites / Example Tests (push) Has been cancelled
Test Suites / Notebook Tests (push) Has been cancelled
Test Suites / OS and Python Tests Ubuntu (push) Has been cancelled
Test Suites / OS and Python Tests Extended (push) Has been cancelled
Test Suites / LLM Test Suite (push) Has been cancelled
Test Suites / S3 File Storage Test (push) Has been cancelled
Test Suites / Run Integration Tests (push) Has been cancelled
Test Suites / MCP Tests (push) Has been cancelled
Test Suites / Docker Compose Test (push) Has been cancelled
Test Suites / Docker CI test (push) Has been cancelled
Test Suites / Relational DB Migration Tests (push) Has been cancelled
Test Suites / Distributed Cognee Test (push) Has been cancelled
Test Suites / DB Examples Tests (push) Has been cancelled
Test Suites / Test Completion Status (push) Has been cancelled
Test Suites / Claude Code Review (push) Has been cancelled
Test Suites / basic checks (push) Has been cancelled
build | Build and Push Cognee MCP Docker Image to dockerhub / docker-build-and-push (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
build | Build and Push Docker Image to dockerhub / docker-build-and-push (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges Core Functionality (3.11) (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges Core Functionality (3.12) (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges with Different Graph Databases (kuzu, kuzu) (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges with Different Graph Databases (neo4j, neo4j) (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges Examples (push) Has been cancelled
Weighted Edges Tests / Code Quality for Weighted Edges (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:02:24 +08:00

150 lines
5.5 KiB
Python

# ruff: noqa: E402
"""
V2 Memory-Oriented API: remember, recall, improve, forget, status.
Demonstrates two memory patterns:
1. Permanent memory -- remember() without session_id ingests data
directly into the knowledge graph.
2. Session memory -- remember() with session_id stores data in the
session cache only. improve() syncs session content into the
permanent graph.
Also shows per-source tracking (status with items/since) and freshness
checking via source_content_hash on graph nodes.
Usage:
uv run python examples/demos/remember_recall_improve_example.py
Requires:
LLM_API_KEY set in .env or environment.
"""
import asyncio
import os
# Enable filesystem-based session caching (required for session_id and improve)
# Set os.environ before importing Cognee: Cognee reads env-backed settings at import time, so values
# assigned later may not override defaults or `.env`. See https://docs.cognee.ai/setup-configuration/overview#using-os-environ
os.environ["CACHING"] = "true"
os.environ["CACHE_BACKEND"] = "fs"
import cognee
PERMANENT_TEXT = (
"Albert Einstein developed the theory of general relativity, "
"which describes gravity as the curvature of spacetime caused by mass and energy. "
"He published this work in 1915 while working at the University of Berlin. "
"Marie Curie was the first woman to win a Nobel Prize and remains the only person "
"to win Nobel Prizes in two different sciences: physics and chemistry. "
"She conducted pioneering research on radioactivity at the Sorbonne in Paris."
)
SESSION_TEXT_1 = (
"The Sorbonne, formally known as the University of Paris, has been a center of "
"academic excellence since the 13th century. Albert Einstein gave several lectures "
"there during his visits to France."
)
SESSION_TEXT_2 = (
"Niels Bohr proposed the atomic model with quantized electron orbits in 1913. "
"He worked closely with Einstein on quantum mechanics debates throughout the 1920s."
)
DATASET = "scientists"
SESSION = "demo_session"
async def main():
from cognee.infrastructure.databases.relational.create_db_and_tables import (
create_db_and_tables,
)
await create_db_and_tables()
from cognee.infrastructure.databases.cache.config import get_cache_config
get_cache_config.cache_clear()
await cognee.forget(everything=True)
# ----------------------------------------------------------------
# Part 1: Permanent memory -- remember() without session
# ----------------------------------------------------------------
# Ingest data directly into the knowledge graph.
print("--- Step 1: remember() -- permanent memory ---")
await cognee.remember(PERMANENT_TEXT, dataset_name=DATASET)
print(" Data ingested into permanent graph.")
# Query the permanent graph
print("\n--- Step 2: recall() -- query permanent memory ---")
answer = await cognee.recall(
"What is the theory of general relativity?",
datasets=[DATASET],
)
print(f" Answer: {answer}")
# ----------------------------------------------------------------
# Part 2: Session memory -- remember() with session_id
# ----------------------------------------------------------------
# Store data in the session cache only. No add/cognify runs.
# Multiple calls accumulate entries in the same session.
print("\n--- Step 3: remember(session_id) -- session memory (entry 1) ---")
await cognee.remember(SESSION_TEXT_1, session_id=SESSION)
print(" Stored in session cache.")
print("\n--- Step 4: remember(session_id) -- session memory (entry 2) ---")
await cognee.remember(SESSION_TEXT_2, session_id=SESSION)
print(" Stored in session cache.")
# Recall with session_id queries the permanent graph but the LLM also
# sees the session conversation history as context
print("\n--- Step 5: recall(session_id) -- session-aware query ---")
answer = await cognee.recall(
"What did the user mention about the Sorbonne?",
datasets=[DATASET],
session_id=SESSION,
)
print(f" Answer: {answer}")
print("\n--- Step 6: recall(session_id) -- follow-up ---")
answer = await cognee.recall(
"Who else was mentioned and what did they work on?",
datasets=[DATASET],
session_id=SESSION,
)
print(f" Answer: {answer}")
# ----------------------------------------------------------------
# Part 3: Sync session memory to permanent graph via improve()
# ----------------------------------------------------------------
# improve() reads session entries, runs add + cognify on them,
# persisting the session content into the permanent graph
print("\n--- Step 7: improve(session_ids) -- sync session to permanent ---")
await cognee.improve(dataset=DATASET, session_ids=[SESSION])
print(" Session content synced to permanent graph.")
# Now the graph contains both the original data and the session content
print("\n--- Step 8: recall() -- query enriched permanent graph ---")
answer = await cognee.recall(
"What contributions did Einstein and Bohr make?",
datasets=[DATASET],
)
print(f" Answer: {answer}")
# ----------------------------------------------------------------
# Cleanup
# ----------------------------------------------------------------
print("\n--- Step 9: forget(everything) ---")
result = await cognee.forget(everything=True)
print(f" {result}")
print("\nDone.")
if __name__ == "__main__":
asyncio.run(main())