import asynciofrom sxth_mind import Mindfrom examples.sales import SalesAdapterasync def main(): # Create a Mind with an adapter mind = Mind(adapter=SalesAdapter()) # Chat - state accumulates automatically response = await mind.chat("user_1", "Working on the Acme deal") print(response) # Inspect what the Mind knows state = await mind.get_state("user_1") print(state["user_mind"]["patterns"]) # Human-readable summary print(await mind.explain_state("user_1"))asyncio.run(main())