personal memory agent
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: update remaining topics directory reference in integration test

- Fix test_indexer_events.py to use insights/ directory
- Update stale comment in agents routes

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

+3 -3
+1 -1
apps/agents/routes.py
··· 414 414 415 415 # Handle insights-specific fields (color, muted) 416 416 if "color" in data or "disabled" in data: 417 - # This is actually a topic update, not an agent 417 + # This is actually an insight update, not an agent 418 418 return jsonify({"error": "Invalid fields for agent update"}), 400 419 419 420 420 response, status = _update_item("agents", agent_id, data)
+2 -2
tests/integration/test_indexer_events.py
··· 120 120 }, 121 121 ] 122 122 123 - # Write additional events file in topics directory with a valid topic name 123 + # Write additional events file in insights directory with a valid topic name 124 124 # Use "timeline" as it's a valid topic name 125 - events_file = journal_path / "20240101" / "topics" / "timeline.json" 125 + events_file = journal_path / "20240101" / "insights" / "timeline.json" 126 126 events_file.parent.mkdir(exist_ok=True) 127 127 # Wrap in occurrences structure as expected by the indexer 128 128 events_json = {"day": "20240101", "occurrences": events_data}