| Name | Type |
|---|---|
| state | StateT |
| runtime | Runtime[ContextT] |
Context passed to namespace factory functions.
BackendContext will be removed in deepagents==0.7.0. Namespace
factories now receive a Runtime instance directly. Migrate
lambda ctx: (ctx.runtime.context.user_id, "fs") to
lambda rt: (rt.server_info.user.identity, "fs").