Python SDK

The Python SDK mirrors the TypeScript surface.

pip install personamesh

from personamesh import PersonaMesh

pm = PersonaMesh(base_url="http://localhost:8787")

mira = pm.personas.create(spec)
reply = mira.chat.send("Hello")
mira.memory.remember(tier="semantic", content="Prefers Oxford comma", importance=0.7)
mira.pol.generate()
mira.autonomy.start(budget_usd_per_day=2)
mira.autonomy.tick()

Implementation lands in Phase 7 of the WORKPLAN. Public API surface is frozen now.