> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.nvidia.com/nemo/relay/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.nvidia.com/nemo/relay/_mcp/server.

# Function nemo_relay_llm_request_intercept_outcome_json_new

> Allocate canonical JSON for a C LLM request-intercept callback result.

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`.

<pre />

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`.