You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tensorrt_llm/llmapi/llm_args.py
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1931,6 +1931,12 @@ class BaseLlmArgs(StrictBaseModel):
1931
1931
status="prototype",
1932
1932
)
1933
1933
1934
+
env_overrides: Optional[Dict[str, str]] =Field(
1935
+
default=None,
1936
+
description=
1937
+
"[EXPERIMENTAL] Environment variable overrides. NOTE: import-time-cached env vars in the code won’t update unless the code fetches them from os.environ on demand.",
0 commit comments