MCPcopy Create free account
hub / github.com/NVIDIA/NeMo-Relay / scope_deregister_llm_request_intercept

Function scope_deregister_llm_request_intercept

crates/python/src/py_api/mod.rs:1517–1520  ·  view source on GitHub ↗
(scope_uuid: &str, name: &str)

Source from the content-addressed store, hash-verified

1515/// Remove a previously registered scope-local LLM request intercept.
1516#[pyfunction]
1517fn scope_deregister_llm_request_intercept(scope_uuid: &str, name: &str) -> PyResult<bool> {
1518 let uuid = parse_uuid(scope_uuid)?;
1519 core_registry_api::scope_deregister_llm_request_intercept(&uuid, name).map_err(to_py_err)
1520}
1521
1522/// Register a scope-local LLM execution intercept.
1523#[pyfunction]

Callers

nothing calls this directly

Calls 1

parse_uuidFunction · 0.85

Tested by

no test coverage detected