For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • About NVIDIA NeMo Relay
    • Overview
    • Architecture
    • Ecosystem
    • Concepts
    • Release Notes
  • Getting Started
    • Agent Runtime Primer
    • Prerequisites
    • Installation
    • Configuration / Setup
    • Quick Start
  • NVIDIA NeMo Relay CLI
    • About
    • Basic Usage
    • Claude Code
    • Codex
    • Cursor
    • Hermes Agent
  • Supported Integrations
    • About
    • OpenClaw Plugin Guide
    • LangChain Integration Guide
    • LangGraph Integration Guide
    • Deep Agents Integration Guide
  • Instrument Applications
    • About
    • Adding Scopes and Marks
    • Instrument a Tool Call
    • Instrument an LLM Call
    • Add Middleware
    • Code Examples
  • Observability Plugin
    • About
    • Configuration
    • Agent Trajectory Interchange Format (ATIF)
    • Agent Trajectory Observability Format (ATOF)
    • OpenTelemetry
    • OpenInference
  • Adaptive Plugin
    • About
    • Configuration
    • Adaptive Cache Governor (ACG)
    • Adaptive Hints
  • NeMo Guardrails Plugin
    • About
    • Configuration
  • Integrate into Frameworks
    • About
    • Adding Scopes
    • Wrap Tool Calls
    • Wrap LLM Calls
    • Handle Non-Serializable Data
    • Using Codecs
    • Provider Codecs
    • Provider Response Codecs
    • Code Examples
  • Build Plugins
    • About
    • Define a Plugin
    • Validate Plugin Configuration
    • Plugin Configuration Files
    • Register Plugin Behavior
    • Design Plugin Configuration
    • NeMo Guardrails Example Plugin
    • Code Examples
  • Contribute
    • About
    • Development Setup
    • Workflow and Reviews
    • Testing and Documentation
  • Reference
    • APIs
      • Python Library Reference
      • Node.js Library Reference
      • Rust Library Reference
        • nemo-relay
          • api
            • event
            • llm
              • CreateLlmHandleParams
              • EndLlmHandleParams
              • LlmAttributes
              • LlmCallEndParams
              • LlmCallExecuteParams
              • LlmCallParams
              • LlmHandle
              • LlmRequest
              • LlmStreamCallExecuteParams
              • llm_call
              • llm_call_end
              • llm_call_execute
              • llm_conditional_execution
              • llm_request_intercepts
              • llm_stream_call_execute
            • registry
            • runtime
            • scope
            • subscriber
            • tool
          • codec
          • config_editor
          • error
          • json
          • observability
          • plugin
          • plugins
          • stream
          • editor_config
        • nemo-relay-adaptive
        • nemo-relay-ffi
    • Performance
  • Resources
    • Support and FAQs
    • Glossary
    • Troubleshooting Guide
    • Community
    • Legal
NVIDIANVIDIA
Developer-friendly docs for your API
Privacy Policy | Your Privacy Choices | Terms of Service | Accessibility | Corporate Policies | Product Security | Contact

Copyright © 2026, NVIDIA Corporation.

LogoLogo
On this page
  • Fields
  • name: String
  • request: LlmRequest
  • func: LlmExecutionNextFn
  • parent: Option<ScopeHandle>
  • attributes: LlmAttributes
  • data: Option<Json>
  • metadata: Option<Json>
  • model_name: Option<String>
  • codec: Option<Arc<dyn LlmCodec>>
  • response_codec: Option<Arc<dyn LlmResponseCodec>>
  • Implementations
  • impl LlmCallExecuteParams
  • builder
ReferenceAPIsRust Library Referencenemo-relayapillm

Struct LlmCall Execute Params

||View as Markdown|
Previous

Struct LlmCall EndParams

Next

Struct LlmCall Params

Generated from cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-ffi.

pub struct LlmCallExecuteParams {
    pub name: String,
    pub request: LlmRequest,
    pub func: LlmExecutionNextFn,
    pub parent: Option<ScopeHandle>,
    pub attributes: LlmAttributes,
    pub data: Option<Json>,
    pub metadata: Option<Json>,
    pub model_name: Option<String>,
    pub codec: Option<Arc<dyn LlmCodec>>,
    pub response_codec: Option<Arc<dyn LlmResponseCodec>>,
}

Builder parameters for llm_call_execute.

Fields

name: String

Logical provider or model family name recorded on emitted events.

request: LlmRequest

Raw request passed into the managed pipeline.

func: LlmExecutionNextFn

Provider callback or execution continuation.

parent: Option<ScopeHandle>

Optional explicit parent scope for the emitted LLM span.

attributes: LlmAttributes

LLM attribute bitflags applied to the managed span.

data: Option<Json>

Optional application payload stored on the handle but not emitted as Agent Trajectory Observability Format (ATOF) data.

metadata: Option<Json>

Optional JSON metadata recorded on emitted events.

model_name: Option<String>

Optional normalized model name for observability output.

codec: Option<Arc<dyn LlmCodec>>

Optional request codec used to produce annotated request data.

response_codec: Option<Arc<dyn LlmResponseCodec>>

Optional response codec used to attach annotated response data.

Implementations

impl LlmCallExecuteParams

impl LlmCallExecuteParams

builder

pub fn builder() -> LlmCallExecuteParamsBuilder<((), (), (), (), (), (), (), (), (), ())>

Create a builder for building LlmCallExecuteParams. On the builder, call .name(...), .request(...), .func(...), .parent(...)(optional), .attributes(...)(optional), .data(...)(optional), .metadata(...)(optional), .model_name(...)(optional), .codec(...)(optional), .response_codec(...)(optional) to set the values of the fields. Finally, call .build() to create the instance of LlmCallExecuteParams.