personal memory agent
0
fork

Configure Feed

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

Fix formatting and update test fixture sqlite

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

+6 -4
tests/fixtures/journal/indexer/journal.sqlite

This is a binary file and will not be displayed.

+6 -4
think/tools/call.py
··· 28 28 set_facet_muted, 29 29 update_facet, 30 30 ) 31 - from think.indexer.journal import get_events as get_events_impl 32 - from think.indexer.journal import search_counts as search_counts_impl 33 - from think.indexer.journal import search_journal as search_journal_impl 34 31 from think.importers.utils import ( 35 32 build_import_info, 36 33 get_import_details, 37 34 list_import_timestamps, 38 35 ) 36 + from think.indexer.journal import get_events as get_events_impl 37 + from think.indexer.journal import search_counts as search_counts_impl 38 + from think.indexer.journal import search_journal as search_journal_impl 39 39 from think.utils import ( 40 40 get_journal, 41 41 iter_segments, ··· 109 109 for r in results: 110 110 meta = r["metadata"] 111 111 stream_tag = f" | {meta['stream']}" if meta.get("stream") else "" 112 - typer.echo(f"\n--- {meta['day']} | {meta['facet']} | {meta['agent']}{stream_tag} ---") 112 + typer.echo( 113 + f"\n--- {meta['day']} | {meta['facet']} | {meta['agent']}{stream_tag} ---" 114 + ) 113 115 typer.echo(r["text"].strip()) 114 116 115 117