# Attorney Smith's case research
await agent.send(
"I'm working on Smith v. Johnson, a contract dispute",
scope="attorney-smith",
conversation="case-research"
)
# Attorney Jones's case research (same conversation ID, different scope)
await agent.send(
"I'm working on Davis v. Brown, a negligence case",
scope="attorney-jones",
conversation="case-research"
)
# Each attorney's memory is completely isolated
await agent.send(
"What case am I working on?",
scope="attorney-smith",
conversation="case-research"
)
# Agent responds: "You're working on Smith v. Johnson, a contract dispute"