pub type ToolSanitizeFn = Arc<dyn Fn(String, Json) -> Pin<Box<dyn Future<Output = Result<Json>> + Send>> + Send + Sync>;Expand description
Sanitize a tool request payload before the runtime records it.
Tool sanitize callbacks are used only for observability payloads. They can rewrite the JSON arguments recorded on tool-start events without changing the caller-owned request that is passed to the tool implementation.
§Parameters
- First argument: Tool name associated with the request payload.
- Second argument: JSON payload to sanitize for observability.
§Returns
Sanitized JSON payload for the emitted event.
Aliased Type§
pub struct ToolSanitizeFn { /* private fields */ }