Models with Functional Limitations#
The following LLM-specific NIM containers are known to have functional differences from most other models and are subject to the limitations shown on this page:
Environment Variables#
Not Supported#
The following environment variables aren’t currently supported:
NIM_MAX_MODEL_LENNIM_SCHEDULER_POLICYNIM_TOKENIZER_MODE: Defaults to fast modeNIM_CUSTOM_GUIDED_DECODING_BACKENDSNIM_GUIDED_DECODING_BACKENDNIM_KV_CACHE_HOST_MEM_FRACTIONNIM_ENABLE_KV_CACHE_HOST_OFFLOADNIM_ENABLE_KV_CACHE_REUSENIM_ENABLE_PROMPT_LOGPROBSNIM_MAX_CPU_LORASNIM_MAX_GPU_LORASNIM_PEFT_REFRESH_INTERVALNIM_PEFT_SOURCENIM_RELAX_MEM_CONSTRAINTSNIM_CUSTOM_MODEL_NAMENIM_DISABLE_OVERLAP_SCHEDULINGNIM_ENABLE_DP_ATTENTIONNIM_LOW_MEMORY_MODENIM_MANIFEST_ALLOW_UNSAFE: No longer requiredNIM_NUM_KV_CACHE_SEQ_LENSNIM_FORCE_TRUST_REMOTE_CODE: Defaults to TrueSSL_CERT_FILE: UseNIM_SSL_CERT_PATHinsteadNIM_FT_MODELNIM_DISABLE_CUDA_GRAPH: Defaults to FalseNIM_FORCE_DETERMINISTICNIM_REWARD_LOGITS_RANGENIM_REWARD_MODELNIM_REWARD_MODEL_STRING
Note
Most of these variables are not used with an SGLang backend.
New Additions#
The following environment variables are only available to the models with functional limitations listed at the start of this page.
NIM_TAGS_SELECTOR: Filters tags in the automatic profile selector. You can use a list of key-value pairs, where the key is the profile property name and the value is the desired property value. For example, setNIM_TAGS_SELECTOR="profile=latency"to automatically select the latency profile. Or setNIM_TAGS_SELECTOR="tp=4"to select a throughput profile that supports 4 GPUs.DISABLE_RADIX_CACHE: Set to1to disable KV cache reuse.NIM_ENABLE_MTP: Set to1to enable the LLM to generate several tokens at once, boosting speed, efficiency, and reasoning.REASONING_PARSER: Set to1to turn thinking on.TOOL_CALL_PARSER: Set to1to turn tool calling on.NIM_CONFIG_FILE: Specifies a configuration YAML file for advanced parameter tuning. Use this file to overwrite the default NIM configuration values. You must convert the hyphens in server argument names to underscores. For example, the following SGLang command arguments:python -m sglang.launch_server --model-path XXX --tp-size 4 \ --context-length 262144 --mem-fraction-static 0.8
are defined by the following content in the configuration YAML file:
tp_size: 4 context_length: 262144 mem_fraction_static: 0.8
Default value:
None.
API Compatibility#
The following API features are not supported:
logprobssuffixGuided decoding (including
guided_whitespace_patternandstructured_generation)Echo and role configuration
Reward
Llama API
nvext
nvext features are supported using different parameters in the top-level
payload.
Security Features#
No changes to security features. These models maintain the same security features and capabilities as standard models. No additional security limitations or modifications apply.
Usage Changes and Features#
The container docker run command doesn’t support the -u $(id -u)
parameter.
For air gap deployment, add the following parameters to
the docker run command:
-e NIM_DISABLE_MODEL_DOWNLOAD=1 \
-v <local-model-path>:<model-weight-path> \
-e NIM_MODEL_PATH=<model-weight-path> \
No other changes to usage and features are needed. These models follow standard usage patterns and workflows. No changes to standard usage procedures are required beyond the differences specified on this page.