From 19271eb9ee25ed2ad26076f54b983092ebdc5a4e Mon Sep 17 00:00:00 2001 From: Twisha Bansal Date: Fri, 30 Jan 2026 10:28:09 +0530 Subject: [PATCH] docs: clarify that pre/post processing is an orchestration feature Explicitly document that these capabilities are typically provided by orchestration frameworks (like LangChain, LangGraph) rather than the Toolbox SDK itself, but that Toolbox tools are designed to leverage them. --- docs/en/samples/pre_post_processing/_index.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/en/samples/pre_post_processing/_index.md b/docs/en/samples/pre_post_processing/_index.md index 7ad0c28082..9b3c5479a8 100644 --- a/docs/en/samples/pre_post_processing/_index.md +++ b/docs/en/samples/pre_post_processing/_index.md @@ -6,7 +6,9 @@ description: > Pre and Post processing in GenAI applications. --- -Pre and post processing allow developers to intercept and modify interactions between the agent and its tools or the user. This capability is essential for building robust, secure, and compliant agents. +Pre and post processing allow developers to intercept and modify interactions between the agent and its tools or the user. + +> **Note**: These capabilities are typically features of **orchestration frameworks** (like LangChain, LangGraph, or Agent Builder) rather than the Toolbox SDK itself. However, Toolbox tools are designed to fully leverage these framework capabilities to support robust, secure, and compliant agent architectures. ## Types of Processing