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
+26-1Lines changed: 26 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,5 @@
1
+
# ruff: noqa: D301, D411
2
+
# Using \f and \b for click --help formatting, which violates these rules.
1
3
"""Command line interface for Vector Inference.
2
4
3
5
This module provides the command-line interface for interacting with Vector
@@ -124,16 +126,23 @@ def cli() -> None:
124
126
type=str,
125
127
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'",
126
128
)
129
+
@click.option(
130
+
"--config",
131
+
type=str,
132
+
help="Path to a model config yaml file to use in place of the default",
0 commit comments