(name: &str)
| 1000 | /// Remove a previously registered tool execution intercept. |
| 1001 | #[pyfunction] |
| 1002 | fn deregister_tool_execution_intercept(name: &str) -> PyResult<bool> { |
| 1003 | core_registry_api::deregister_tool_execution_intercept(name).map_err(to_py_err) |
| 1004 | } |
| 1005 | |
| 1006 | // --------------------------------------------------------------------------- |
| 1007 | // LLM guardrail registrations |
no outgoing calls
no test coverage detected