()
| 275 | |
| 276 | @mcp.tool() |
| 277 | async def read_profile() -> str: |
| 278 | deps = Deps(openai=AsyncOpenAI(), pool=await get_db_pool()) |
| 279 | profile = await display_memory_tree(deps) |
| 280 | await deps.pool.close() |
| 281 | return profile |
| 282 | |
| 283 | |
| 284 | async def initialize_database(): |
nothing calls this directly
no test coverage detected