diff --git a/interface/web/src/Settings.jsx b/interface/web/src/Settings.jsx index 03c21c7..0e84a9d 100644 --- a/interface/web/src/Settings.jsx +++ b/interface/web/src/Settings.jsx @@ -8,6 +8,7 @@ const DEFAULTS = { num_ctx: 0, // context window in tokens; 0 = model default rag_top_k: 3, // document chunks injected into chat rag_min_score: 0.6, // min cosine similarity for a chunk to count + allow_action_tools: false, // consent gate for web/fetch/memory-write tools system_prompt: "", timeout: 120, gpu_offload: -1, // -1 = Auto; 0–100 = percent of layers forced onto the GPU @@ -241,6 +242,22 @@ export function Settings() { similarity each must clear. Higher relevance = fewer, tighter matches. +
+ +
+ Lets playbooks run tools that act: web search, fetching a URL, and writing + to memory. Off by default — a playbook can list them, but they only fire + when this is on. +
+
+