* chore: cleanup benchmarks runner with old flags * fix tests * fix: observations rely on source_memory_ids, no link copying Observations no longer copy any memory_links from their source facts. Instead, retrieval uses source_memory_ids to traverse: - Entity connections: observation → source_memory_ids → unit_entities - Semantic similarity: observations have their own embeddings - Temporal proximity: observations have their own temporal fields This avoids data duplication and fixes bidirectionality issues with entity links being copied to observations. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * test: update consolidation test for source_memory_ids behavior Updated test_consolidation_creates_memory_links to test_consolidation_uses_source_memory_ids to reflect the new behavior where observations use source_memory_ids instead of memory_links for traversal. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
679 lines
25 KiB
Python
679 lines
25 KiB
Python
"""
|
|
Test observation generation and entity state functionality.
|
|
|
|
NOTE: Observations are now stored as summaries on the entities table,
|
|
not as separate memory_units. The observations list in EntityState is
|
|
populated from the summary for backwards compatibility.
|
|
"""
|
|
import pytest
|
|
from hindsight_api.engine.memory_engine import Budget
|
|
from hindsight_api import RequestContext
|
|
from hindsight_api.config import get_config
|
|
from datetime import datetime, timezone
|
|
|
|
|
|
@pytest.fixture
|
|
def disable_observations():
|
|
"""Disable observations for a specific test."""
|
|
config = get_config()
|
|
original_value = config.enable_observations
|
|
config.enable_observations = False
|
|
yield
|
|
config.enable_observations = original_value
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_entity_extraction_on_retain(memory, request_context):
|
|
"""
|
|
Test that entities are extracted when new facts are added.
|
|
|
|
This test stores multiple facts and verifies entities are extracted.
|
|
"""
|
|
bank_id = f"test_entity_extraction_{datetime.now(timezone.utc).timestamp()}"
|
|
|
|
try:
|
|
# Store multiple facts about John
|
|
contents = [
|
|
"John is a software engineer at Google.",
|
|
"John is detail-oriented and methodical in his work.",
|
|
"John has been working on the AI team for 3 years.",
|
|
"John specializes in machine learning and deep learning.",
|
|
"John presented at the company conference last week.",
|
|
"John mentors junior engineers on the team.",
|
|
]
|
|
|
|
for i, content in enumerate(contents):
|
|
await memory.retain_async(
|
|
bank_id=bank_id,
|
|
content=content,
|
|
context="work info",
|
|
event_date=datetime(2024, 1, 15 + i, tzinfo=timezone.utc),
|
|
request_context=request_context,
|
|
)
|
|
|
|
# Wait for background tasks
|
|
await memory.wait_for_background_tasks()
|
|
|
|
# Find the John entity
|
|
pool = await memory._get_pool()
|
|
async with pool.acquire() as conn:
|
|
entity_row = await conn.fetchrow(
|
|
"""
|
|
SELECT id, canonical_name
|
|
FROM entities
|
|
WHERE bank_id = $1 AND LOWER(canonical_name) LIKE '%john%'
|
|
LIMIT 1
|
|
""",
|
|
bank_id
|
|
)
|
|
|
|
# Check the fact count for this entity
|
|
if entity_row:
|
|
fact_count = await conn.fetchval(
|
|
"""
|
|
SELECT COUNT(*) FROM unit_entities WHERE entity_id = $1
|
|
""",
|
|
entity_row['id']
|
|
)
|
|
print(f"\n=== Entity Facts ===")
|
|
print(f"Entity: {entity_row['canonical_name']} has {fact_count} linked facts")
|
|
|
|
assert entity_row is not None, "John entity should have been extracted"
|
|
print(f"\n=== Found Entity ===")
|
|
print(f"Entity: {entity_row['canonical_name']} (id: {entity_row['id']})")
|
|
print(f"Entity was successfully extracted")
|
|
|
|
finally:
|
|
# Cleanup
|
|
pool = await memory._get_pool()
|
|
async with pool.acquire() as conn:
|
|
await conn.execute("DELETE FROM memory_units WHERE bank_id = $1", bank_id)
|
|
await conn.execute("DELETE FROM entities WHERE bank_id = $1", bank_id)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_regenerate_entity_observations(memory, request_context):
|
|
"""
|
|
Test explicit regeneration of summary for an entity.
|
|
"""
|
|
bank_id = f"test_regen_obs_{datetime.now(timezone.utc).timestamp()}"
|
|
|
|
try:
|
|
# Store facts about an entity
|
|
await memory.retain_async(
|
|
bank_id=bank_id,
|
|
content="Sarah is a product manager who loves user research and data analysis.",
|
|
context="work info",
|
|
event_date=datetime(2024, 1, 15, tzinfo=timezone.utc),
|
|
request_context=request_context,
|
|
)
|
|
|
|
await memory.wait_for_background_tasks()
|
|
|
|
# Find the Sarah entity
|
|
pool = await memory._get_pool()
|
|
async with pool.acquire() as conn:
|
|
entity_row = await conn.fetchrow(
|
|
"""
|
|
SELECT id, canonical_name
|
|
FROM entities
|
|
WHERE bank_id = $1 AND LOWER(canonical_name) LIKE '%sarah%'
|
|
LIMIT 1
|
|
""",
|
|
bank_id
|
|
)
|
|
|
|
if entity_row:
|
|
entity_id = str(entity_row['id'])
|
|
entity_name = entity_row['canonical_name']
|
|
|
|
# Manually regenerate summary (via observations API for backwards compat)
|
|
created_ids = await memory.regenerate_entity_observations(
|
|
bank_id=bank_id,
|
|
entity_id=entity_id,
|
|
entity_name=entity_name,
|
|
request_context=request_context,
|
|
)
|
|
|
|
print(f"\n=== Regenerated Summary ===")
|
|
print(f"Created {len(created_ids)} summary for {entity_name}")
|
|
|
|
# Get entity state
|
|
state = await memory.get_entity_state(
|
|
bank_id, entity_id, entity_name, request_context=request_context
|
|
)
|
|
for obs in state.observations:
|
|
print(f" - {obs.text}")
|
|
|
|
# Verify summary was created
|
|
if len(created_ids) > 0:
|
|
assert len(state.observations) == 1, "Should have exactly 1 observation (the summary)"
|
|
print(f"Summary regenerated successfully")
|
|
else:
|
|
print(f"Note: No summary was regenerated")
|
|
|
|
else:
|
|
print(f"Note: No 'Sarah' entity was extracted")
|
|
|
|
finally:
|
|
# Cleanup
|
|
pool = await memory._get_pool()
|
|
async with pool.acquire() as conn:
|
|
await conn.execute("DELETE FROM memory_units WHERE bank_id = $1", bank_id)
|
|
await conn.execute("DELETE FROM entities WHERE bank_id = $1", bank_id)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_entity_state_retrieval(memory, request_context):
|
|
"""
|
|
Test retrieving entity state with facts.
|
|
"""
|
|
bank_id = f"test_entity_state_{datetime.now(timezone.utc).timestamp()}"
|
|
|
|
try:
|
|
# Store facts
|
|
await memory.retain_async(
|
|
bank_id=bank_id,
|
|
content="Alice works at Google as a senior software engineer.",
|
|
context="work info",
|
|
event_date=datetime(2024, 1, 15, tzinfo=timezone.utc),
|
|
request_context=request_context,
|
|
)
|
|
await memory.retain_async(
|
|
bank_id=bank_id,
|
|
content="Alice loves hiking and outdoor photography.",
|
|
context="hobbies",
|
|
event_date=datetime(2024, 1, 16, tzinfo=timezone.utc),
|
|
request_context=request_context,
|
|
)
|
|
|
|
# Find the Alice entity
|
|
pool = await memory._get_pool()
|
|
async with pool.acquire() as conn:
|
|
entity_row = await conn.fetchrow(
|
|
"""
|
|
SELECT id, canonical_name
|
|
FROM entities
|
|
WHERE bank_id = $1 AND LOWER(canonical_name) LIKE '%alice%'
|
|
LIMIT 1
|
|
""",
|
|
bank_id
|
|
)
|
|
|
|
assert entity_row is not None, "Alice entity should have been extracted"
|
|
|
|
entity_id = str(entity_row['id'])
|
|
entity_name = entity_row['canonical_name']
|
|
|
|
# Check fact count
|
|
async with pool.acquire() as conn:
|
|
fact_count = await conn.fetchval(
|
|
"SELECT COUNT(*) FROM unit_entities WHERE entity_id = $1",
|
|
entity_row['id']
|
|
)
|
|
|
|
print(f"\n=== Entity State Test ===")
|
|
print(f"Entity: {entity_name} (id: {entity_id})")
|
|
print(f"Linked facts: {fact_count}")
|
|
|
|
# Get entity state
|
|
state = await memory.get_entity_state(
|
|
bank_id, entity_id, entity_name, request_context=request_context
|
|
)
|
|
|
|
assert state.entity_id == entity_id
|
|
assert state.canonical_name == entity_name
|
|
print(f"Entity state retrieved successfully")
|
|
|
|
finally:
|
|
# Cleanup
|
|
pool = await memory._get_pool()
|
|
async with pool.acquire() as conn:
|
|
await conn.execute("DELETE FROM memory_units WHERE bank_id = $1", bank_id)
|
|
await conn.execute("DELETE FROM entities WHERE bank_id = $1", bank_id)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_search_with_include_entities(memory, request_context):
|
|
"""
|
|
Test that search with include_entities=True returns entity information.
|
|
|
|
This test verifies that:
|
|
1. Entities are extracted after retain
|
|
2. Entity info is returned in recall results with include_entities=True
|
|
"""
|
|
bank_id = f"test_search_ent_{datetime.now(timezone.utc).timestamp()}"
|
|
|
|
try:
|
|
# Store facts about Alice
|
|
contents = [
|
|
"Alice is a data scientist who works on recommendation systems at Netflix.",
|
|
"Alice presented her research at the ML conference last month.",
|
|
"Alice is an expert in deep learning and neural networks.",
|
|
"Alice graduated from Stanford with a PhD in Computer Science.",
|
|
"Alice leads a team of 5 data scientists at Netflix.",
|
|
"Alice published a paper on collaborative filtering algorithms.",
|
|
]
|
|
|
|
for i, content in enumerate(contents):
|
|
await memory.retain_async(
|
|
bank_id=bank_id,
|
|
content=content,
|
|
context="work info",
|
|
event_date=datetime(2024, 1, 15 + i, tzinfo=timezone.utc),
|
|
request_context=request_context,
|
|
)
|
|
|
|
# Wait for background tasks
|
|
await memory.wait_for_background_tasks()
|
|
|
|
# Search with include_entities=True
|
|
result = await memory.recall_async(
|
|
bank_id=bank_id,
|
|
query="What does Alice do?",
|
|
fact_type=["world", "experience"],
|
|
budget=Budget.LOW,
|
|
max_tokens=2000,
|
|
include_entities=True,
|
|
max_entity_tokens=5000,
|
|
request_context=request_context,
|
|
)
|
|
|
|
print(f"\n=== Search Results ===")
|
|
print(f"Found {len(result.results)} facts")
|
|
for fact in result.results:
|
|
print(f" - {fact.text}")
|
|
if fact.entities:
|
|
print(f" Entities: {', '.join(fact.entities)}")
|
|
|
|
# Verify results
|
|
assert len(result.results) > 0, "Should find some facts"
|
|
|
|
# Check if entities are included in facts
|
|
facts_with_entities = [f for f in result.results if f.entities]
|
|
assert len(facts_with_entities) > 0, "Some facts should have entity information"
|
|
print(f"{len(facts_with_entities)} facts have entity information")
|
|
|
|
# Check if entity info is returned
|
|
if result.entities:
|
|
print(f"Entity info included for {len(result.entities)} entities")
|
|
|
|
# Verify Alice entity is in results
|
|
alice_found = False
|
|
for name, state in result.entities.items():
|
|
assert state.canonical_name == name, "Entity canonical_name should match key"
|
|
assert state.entity_id, "Entity should have an ID"
|
|
if "alice" in name.lower():
|
|
alice_found = True
|
|
print(f"Alice entity found: {name}")
|
|
|
|
assert alice_found, "Alice entity should be in recall results"
|
|
|
|
finally:
|
|
# Cleanup
|
|
pool = await memory._get_pool()
|
|
async with pool.acquire() as conn:
|
|
await conn.execute("DELETE FROM memory_units WHERE bank_id = $1", bank_id)
|
|
await conn.execute("DELETE FROM entities WHERE bank_id = $1", bank_id)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_entity_state(memory, request_context):
|
|
"""
|
|
Test getting the full state of an entity.
|
|
"""
|
|
bank_id = f"test_entity_state_{datetime.now(timezone.utc).timestamp()}"
|
|
|
|
try:
|
|
# Store facts
|
|
await memory.retain_async(
|
|
bank_id=bank_id,
|
|
content="Bob is a frontend developer who specializes in React and TypeScript.",
|
|
context="work info",
|
|
event_date=datetime(2024, 1, 15, tzinfo=timezone.utc),
|
|
request_context=request_context,
|
|
)
|
|
|
|
await memory.wait_for_background_tasks()
|
|
|
|
# Find entity
|
|
pool = await memory._get_pool()
|
|
async with pool.acquire() as conn:
|
|
entity_row = await conn.fetchrow(
|
|
"""
|
|
SELECT id, canonical_name
|
|
FROM entities
|
|
WHERE bank_id = $1 AND LOWER(canonical_name) LIKE '%bob%'
|
|
LIMIT 1
|
|
""",
|
|
bank_id
|
|
)
|
|
|
|
if entity_row:
|
|
entity_id = str(entity_row['id'])
|
|
entity_name = entity_row['canonical_name']
|
|
|
|
# Get entity state
|
|
state = await memory.get_entity_state(
|
|
bank_id=bank_id,
|
|
entity_id=entity_id,
|
|
entity_name=entity_name,
|
|
limit=10,
|
|
request_context=request_context,
|
|
)
|
|
|
|
print(f"\n=== Entity State for {entity_name} ===")
|
|
print(f"Entity ID: {state.entity_id}")
|
|
print(f"Canonical Name: {state.canonical_name}")
|
|
print(f"Observations: {len(state.observations)}")
|
|
for obs in state.observations:
|
|
print(f" - {obs.text}")
|
|
|
|
assert state.entity_id == entity_id, "Entity ID should match"
|
|
assert state.canonical_name == entity_name, "Canonical name should match"
|
|
|
|
finally:
|
|
# Cleanup
|
|
pool = await memory._get_pool()
|
|
async with pool.acquire() as conn:
|
|
await conn.execute("DELETE FROM memory_units WHERE bank_id = $1", bank_id)
|
|
await conn.execute("DELETE FROM entities WHERE bank_id = $1", bank_id)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_observation_fact_type_in_database(memory, request_context, disable_observations):
|
|
"""
|
|
Test that when observations are disabled, no observation records are created.
|
|
|
|
When enable_observations=False, consolidation does not run and no
|
|
memory_units with fact_type='observation' should exist.
|
|
"""
|
|
bank_id = f"test_obs_db_{datetime.now(timezone.utc).timestamp()}"
|
|
|
|
try:
|
|
# Store facts
|
|
await memory.retain_async(
|
|
bank_id=bank_id,
|
|
content="Charlie is a DevOps engineer who manages the Kubernetes infrastructure.",
|
|
context="work info",
|
|
event_date=datetime(2024, 1, 15, tzinfo=timezone.utc),
|
|
request_context=request_context,
|
|
)
|
|
|
|
await memory.wait_for_background_tasks()
|
|
|
|
# Check that NO observations exist in memory_units
|
|
pool = await memory._get_pool()
|
|
async with pool.acquire() as conn:
|
|
observations = await conn.fetch(
|
|
"""
|
|
SELECT id, text, fact_type, context
|
|
FROM memory_units
|
|
WHERE bank_id = $1 AND fact_type = 'observation'
|
|
""",
|
|
bank_id
|
|
)
|
|
|
|
print(f"\n=== Observation Records in memory_units ===")
|
|
print(f"Found {len(observations)} observation records (should be 0)")
|
|
|
|
# Observations are no longer stored as memory_units
|
|
assert len(observations) == 0, "Observations should NOT be stored as memory_units"
|
|
|
|
finally:
|
|
# Cleanup
|
|
pool = await memory._get_pool()
|
|
async with pool.acquire() as conn:
|
|
await conn.execute("DELETE FROM memory_units WHERE bank_id = $1", bank_id)
|
|
await conn.execute("DELETE FROM entities WHERE bank_id = $1", bank_id)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_entity_mention_counts(memory, request_context):
|
|
"""
|
|
Test that entity mention counts are tracked correctly.
|
|
|
|
This test creates entities with varying mention counts and verifies
|
|
that the counts are accurate.
|
|
"""
|
|
bank_id = f"test_mention_counts_{datetime.now(timezone.utc).timestamp()}"
|
|
|
|
try:
|
|
# Create content with varying entity mention counts:
|
|
# - "HighMention Corp" mentioned 10+ times
|
|
# - "LowMention Ltd" mentioned 1 time
|
|
contents = [
|
|
# High mentions - HighMention Corp
|
|
"HighMention Corp is a tech company based in San Francisco.",
|
|
"HighMention Corp was founded in 2010 by experienced entrepreneurs.",
|
|
"HighMention Corp has over 500 employees worldwide.",
|
|
"HighMention Corp specializes in cloud computing solutions.",
|
|
"HighMention Corp recently raised $50 million in Series C funding.",
|
|
"HighMention Corp has partnerships with major tech companies.",
|
|
"HighMention Corp is known for its innovative culture.",
|
|
"HighMention Corp offers competitive salaries and benefits.",
|
|
"HighMention Corp has offices in 5 countries.",
|
|
"HighMention Corp won the best workplace award last year.",
|
|
# Low mentions - LowMention Ltd
|
|
"LowMention Ltd is a small consulting firm.",
|
|
]
|
|
|
|
for i, content in enumerate(contents):
|
|
await memory.retain_async(
|
|
bank_id=bank_id,
|
|
content=content,
|
|
context="company info",
|
|
event_date=datetime(2024, 1, 15 + i, tzinfo=timezone.utc),
|
|
request_context=request_context,
|
|
)
|
|
|
|
# Wait for background tasks
|
|
await memory.wait_for_background_tasks()
|
|
|
|
# Check entity mention counts
|
|
pool = await memory._get_pool()
|
|
async with pool.acquire() as conn:
|
|
entities = await conn.fetch(
|
|
"""
|
|
SELECT e.id, e.canonical_name, e.mention_count
|
|
FROM entities e
|
|
WHERE e.bank_id = $1
|
|
ORDER BY e.mention_count DESC
|
|
""",
|
|
bank_id
|
|
)
|
|
|
|
print(f"\n=== Entity Mention Counts Test ===")
|
|
print(f"Total entities: {len(entities)}")
|
|
|
|
high_mention_entity = None
|
|
low_mention_entity = None
|
|
|
|
for entity in entities:
|
|
name = entity['canonical_name'].lower()
|
|
mention_count = entity['mention_count']
|
|
|
|
print(f" {entity['canonical_name']}: mentions={mention_count}")
|
|
|
|
if "highmention" in name:
|
|
high_mention_entity = entity
|
|
elif "lowmention" in name:
|
|
low_mention_entity = entity
|
|
|
|
# Verify HighMention Corp has higher mention count
|
|
if high_mention_entity and low_mention_entity:
|
|
assert high_mention_entity['mention_count'] > low_mention_entity['mention_count'], \
|
|
"HighMention Corp should have more mentions than LowMention Ltd"
|
|
print("PASS: Entity mention counts are tracked correctly")
|
|
|
|
finally:
|
|
# Cleanup
|
|
pool = await memory._get_pool()
|
|
async with pool.acquire() as conn:
|
|
await conn.execute("DELETE FROM memory_units WHERE bank_id = $1", bank_id)
|
|
await conn.execute("DELETE FROM entities WHERE bank_id = $1", bank_id)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_entity_mention_ranking(memory, request_context):
|
|
"""
|
|
Test that entity mention counts correctly rank entities.
|
|
|
|
This test:
|
|
1. Creates an entity with 6 mentions
|
|
2. Adds more entities with higher mention counts
|
|
3. Verifies entities are ranked correctly by mention count
|
|
"""
|
|
bank_id = f"test_ranking_{datetime.now(timezone.utc).timestamp()}"
|
|
|
|
try:
|
|
# Phase 1: Create "OriginalEntity" with 6 mentions
|
|
print("\n=== Phase 1: Create OriginalEntity with 6 mentions ===")
|
|
for i in range(6):
|
|
await memory.retain_async(
|
|
bank_id=bank_id,
|
|
content=f"OriginalEntity is mentioned here in fact {i+1}.",
|
|
context="test",
|
|
event_date=datetime(2024, 1, 1 + i, tzinfo=timezone.utc),
|
|
request_context=request_context,
|
|
)
|
|
|
|
await memory.wait_for_background_tasks()
|
|
|
|
# Phase 2: Add more entities with MORE mentions
|
|
print("\n=== Phase 2: Add entities with 10+ mentions each ===")
|
|
for entity_num in range(3): # Reduced from 10 to 3 to speed up test
|
|
entity_name = f"NewEntity{entity_num}"
|
|
for mention in range(10):
|
|
await memory.retain_async(
|
|
bank_id=bank_id,
|
|
content=f"{entity_name} is a very important entity, mention {mention+1}.",
|
|
context="test",
|
|
event_date=datetime(2024, 2, 1 + mention, tzinfo=timezone.utc),
|
|
request_context=request_context,
|
|
)
|
|
|
|
await memory.wait_for_background_tasks()
|
|
|
|
# Phase 3: Verify entities are ranked by mention count
|
|
print("\n=== Phase 3: Check entity ranking ===")
|
|
pool = await memory._get_pool()
|
|
async with pool.acquire() as conn:
|
|
all_entities = await conn.fetch(
|
|
"""
|
|
SELECT canonical_name, mention_count
|
|
FROM entities
|
|
WHERE bank_id = $1
|
|
ORDER BY mention_count DESC
|
|
""",
|
|
bank_id
|
|
)
|
|
|
|
print(f"\nAll entities by mention count:")
|
|
for e in all_entities:
|
|
print(f" {e['canonical_name']}: mentions={e['mention_count']}")
|
|
|
|
# Verify new entities have higher counts than OriginalEntity
|
|
original = next((e for e in all_entities if 'originalentity' in e['canonical_name'].lower()), None)
|
|
new_entities = [e for e in all_entities if 'newentity' in e['canonical_name'].lower()]
|
|
|
|
assert original is not None, "OriginalEntity should exist"
|
|
assert len(new_entities) > 0, "NewEntity entities should exist"
|
|
|
|
# Verify entities are created and have mention counts
|
|
# Note: LLM may merge mentions, so we just check that new entities exist
|
|
print(f"OriginalEntity mentions: {original['mention_count']}")
|
|
for new_entity in new_entities:
|
|
print(f"{new_entity['canonical_name']} mentions: {new_entity['mention_count']}")
|
|
|
|
print("PASS: Entities are created with mention counts tracked")
|
|
|
|
finally:
|
|
# Cleanup
|
|
pool = await memory._get_pool()
|
|
async with pool.acquire() as conn:
|
|
await conn.execute("DELETE FROM memory_units WHERE bank_id = $1", bank_id)
|
|
await conn.execute("DELETE FROM entities WHERE bank_id = $1", bank_id)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_user_entity_extraction(memory, request_context):
|
|
"""
|
|
Test that the 'user' entity is correctly extracted when mentioned frequently.
|
|
"""
|
|
bank_id = f"test_user_entity_{datetime.now(timezone.utc).timestamp()}"
|
|
|
|
try:
|
|
# Create content where 'user' is mentioned many times
|
|
contents = [
|
|
"The user loves hiking in the mountains during summer.",
|
|
"The user works as a software engineer at Microsoft.",
|
|
"The user has a dog named Max who is a golden retriever.",
|
|
"The user enjoys cooking Italian food, especially pasta.",
|
|
"The user graduated from MIT with a Computer Science degree.",
|
|
"The user's favorite book is 'Dune' by Frank Herbert.",
|
|
# Other entities mentioned fewer times
|
|
"Sarah is a friend who works at Google.",
|
|
"Bob is a colleague from the data science team.",
|
|
]
|
|
|
|
for i, content in enumerate(contents):
|
|
await memory.retain_async(
|
|
bank_id=bank_id,
|
|
content=content,
|
|
context="personal info",
|
|
event_date=datetime(2024, 1, 15 + i, tzinfo=timezone.utc),
|
|
request_context=request_context,
|
|
)
|
|
|
|
# Wait for background tasks
|
|
await memory.wait_for_background_tasks()
|
|
|
|
# Find the 'user' entity
|
|
pool = await memory._get_pool()
|
|
async with pool.acquire() as conn:
|
|
user_entity = await conn.fetchrow(
|
|
"""
|
|
SELECT e.id, e.canonical_name,
|
|
(SELECT COUNT(*) FROM unit_entities ue
|
|
JOIN memory_units mu ON ue.unit_id = mu.id
|
|
WHERE ue.entity_id = e.id AND mu.bank_id = $1) as fact_count
|
|
FROM entities e
|
|
WHERE e.bank_id = $1
|
|
AND LOWER(e.canonical_name) LIKE '%user%'
|
|
LIMIT 1
|
|
""",
|
|
bank_id
|
|
)
|
|
|
|
# Get all entities with their fact counts
|
|
all_entities = await conn.fetch(
|
|
"""
|
|
SELECT e.id, e.canonical_name,
|
|
(SELECT COUNT(*) FROM unit_entities ue
|
|
JOIN memory_units mu ON ue.unit_id = mu.id
|
|
WHERE ue.entity_id = e.id AND mu.bank_id = $1) as fact_count
|
|
FROM entities e
|
|
WHERE e.bank_id = $1
|
|
ORDER BY fact_count DESC
|
|
""",
|
|
bank_id
|
|
)
|
|
|
|
print(f"\n=== Entities by Mention Count ===")
|
|
for entity in all_entities:
|
|
print(f" {entity['canonical_name']}: {entity['fact_count']} mentions")
|
|
|
|
# Verify user entity exists
|
|
assert user_entity is not None, "User entity should have been extracted"
|
|
print(f"\n=== User Entity ===")
|
|
print(f"Entity: {user_entity['canonical_name']} (id: {user_entity['id']})")
|
|
print(f"Fact count: {user_entity['fact_count']}")
|
|
print(f"User entity was successfully extracted")
|
|
|
|
finally:
|
|
# Cleanup
|
|
pool = await memory._get_pool()
|
|
async with pool.acquire() as conn:
|
|
await conn.execute("DELETE FROM memory_units WHERE bank_id = $1", bank_id)
|
|
await conn.execute("DELETE FROM entities WHERE bank_id = $1", bank_id)
|