mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 04:10:44 +00:00
7 lines
282 B
TypeScript
7 lines
282 B
TypeScript
export type CommitmentsConfig = {
|
|
/** Enable inferred follow-up extraction, storage, and heartbeat delivery. Default: false. */
|
|
enabled?: boolean;
|
|
/** Maximum inferred follow-up commitments delivered per agent session in a rolling day. Default: 3. */
|
|
maxPerDay?: number;
|
|
};
|