diff --git a/src/pages/tools.astro b/src/pages/tools.astro index 10a9293..732f014 100644 --- a/src/pages/tools.astro +++ b/src/pages/tools.astro @@ -824,19 +824,28 @@ import BaseLayout from '../layouts/BaseLayout.astro';
Tool results are automatically truncated if they exceed limits:
+The 50KB / 2000 line limits apply only to tool results â what zblade sends back to the model after executing a tool (e.g., the output of read_file). These limits only apply in local mode, when the Zaguán Coder Daemon isn't handling storage.
When truncated, the first 100 lines and last 50 lines are shown with a truncation message.
There are no size limits on incoming tool calls from the model. zblade will accept a write_file with any size content. The write_file handler itself has no caps â it writes whatever content string it receives directly to disk.
zblade includes dropped tool call detection. If a tool call from the model never arrives (e.g., streaming progress events complete but the final tool call with arguments is dropped server-side), zblade will catch this and surface a clear error.
+