(name: &str)
| 1130 | /// Remove a previously registered LLM execution intercept. |
| 1131 | #[pyfunction] |
| 1132 | fn deregister_llm_execution_intercept(name: &str) -> PyResult<bool> { |
| 1133 | core_registry_api::deregister_llm_execution_intercept(name).map_err(to_py_err) |
| 1134 | } |
| 1135 | |
| 1136 | /// Register an LLM stream-execution intercept that can replace the streaming LLM call. |
| 1137 | /// |
no outgoing calls
no test coverage detected