Function register_llm_conditional_execution_guardrail
Function register_llm_conditional_execution_guardrail
Generated from cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-ffi.
pub fn register_llm_conditional_execution_guardrail(
name: &str,
priority: i32,
guardrail: LlmConditionalFn,
) -> Result<()>
Register a global LLM conditional-execution guardrail. The guardrail can block LLM execution before intercepts or the provider callback run.
Parameters
name: Unique middleware name in the global registry.priority: Lower values run earlier in the chain.guardrail: Guardrail callback stored undername.
Returns
A Result that is Ok(()) when the guardrail was registered.
Errors
Returns FlowError::AlreadyExists when the name is already in use or an internal error if the runtime state cannot be updated.