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: vec_inf/cli/_cli.py
+18-1Lines changed: 18 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -131,6 +131,16 @@ def cli() -> None:
131
131
is_flag=True,
132
132
help="Output in JSON string",
133
133
)
134
+
@click.option(
135
+
"--env",
136
+
type=str,
137
+
help="Environment variables to be set. Seperate variables with commas. Can also include path to a file containing environment variables seperated by newlines. e.g. --env 'TRITON_CACHE_DIR=/scratch/.cache/triton,my_custom_vars_file.env'",
138
+
)
139
+
@click.option(
140
+
"--config",
141
+
type=str,
142
+
help="Path to a model config yaml file to use in place of the default",
0 commit comments