UNPKG

eve

Version:

Filesystem-first framework for durable backend AI agents that run anywhere.

10 lines (9 loc) 416 B
import { ContextKey } from "#context/key.js"; import type { ConnectionRegistry } from "#runtime/connections/types.js"; /** * Context key for the per-session connection registry. * * Defined separately from the provider so framework tools can read the key * without importing connection client setup into the framework-tools bundle. */ export declare const ConnectionRegistryKey: ContextKey<ConnectionRegistry>;