/** * Closed enum sets shared between the loader's `MONO_AGENT_*` validation and the * config-view builder's select options, so the two surfaces never drift. */ /** * Closed set of reasoning-effort hints, validated by the loader's * `MONO_AGENT_EFFORT` parsing and surfaced as the runtime effort options. */ export declare const EFFORT_LEVELS: readonly ["none", "minimal", "low", "medium", "high", "xhigh", "max", "ultra"]; /** How a mixed-provider fallback chain applies tool and sandbox policy. */ export declare const ROUTE_SAFETY_MODES: readonly ["uniform", "per-route-native"]; /** * Closed set of runtime permission modes, validated by the loader's * `MONO_AGENT_PERMISSION_MODE` parsing. */ export declare const PERMISSION_MODES: readonly ["default", "plan", "acceptEdits", "bypassPermissions"]; /** Built-in and external memory store implementations. */ export declare const MEMORY_BACKENDS: readonly ["bujo", "supermemory"]; /** Strict capability tiers for the built-in BuJo memory backend. */ export declare const MEMORY_MODES: readonly ["lite", "journal", "bujo"]; /** Supported memory persistence policies. */ export declare const MEMORY_WRITE_MODES: readonly ["disabled", "append-host-summary", "capture"]; /** Embedding providers supported by the built-in memory backend. */ export declare const MEMORY_EMBEDDINGS_PROVIDERS: readonly ["ollama", "lmstudio", "openai"]; /** Chat-LLM providers supported by BuJo capture. */ export declare const MEMORY_LLM_PROVIDERS: readonly ["ollama", "agent-host"]; /** Sentinel in tools.allowedTools meaning "all built-in tools" (an allow-all wildcard). */ export declare const ALLOW_ALL_TOOLS = "*"; //# sourceMappingURL=enums.d.ts.map