import { CheckpointStore } from "../contracts/orchestrator/checkpoint-store.contract.mjs"; //#region ../ai/src/checkpoint/memory.d.ts /** * Create an in-memory {@link CheckpointStore}. Zero-config — no client, * no connection. Suitable for dev, tests, and single-process apps that * don't need resume across restarts. * * @example * import { ai } from "@warlock.js/ai"; * * const orchestrator = ai.orchestrator({ * name: "support", * intents: { ... }, * checkpointStore: ai.checkpoint.memory(), * }); */ declare function memory(): CheckpointStore; //#endregion export { memory }; //# sourceMappingURL=memory.d.mts.map