Function nemo_relay_llm_request_intercept_outcome_json_new
Function nemo_relay_llm_request_intercept_outcome_json_new
Generated from cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-pii-redaction -p nemo-relay-ffi -p nemo-relay-types -p nemo-relay-plugin -p nemo-relay-worker-proto -p nemo-relay-worker.
#[unsafe(no_mangle)]pub unsafe extern "C" fn nemo_relay_llm_request_intercept_outcome_json_new(
request: *const FfiLLMRequest,
annotated_json: *const c_char,
pending_marks_json: *const c_char,
out_outcome_json: *mut *mut c_char,
) -> NemoRelayStatus
Allocate canonical JSON for a C LLM request-intercept callback result.
annotated_json may be null. pending_marks_json may be null, in which case an empty list is serialized. When used by a NemoRelayLlmRequestInterceptCb, assign the successful output to the callback’s out_outcome_json; ownership transfers to Relay when the callback returns, so the callback must not free or reuse it. Outside a callback, the caller owns the returned string and must release it with nemo_relay_string_free.
Safety
request must point to a live FfiLLMRequest, optional JSON inputs must be valid null-terminated strings when non-null, and out_outcome_json must be writable. A successful output must either be transferred through a callback’s out_outcome_json or freed by its caller with nemo_relay_string_free.