File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,10 @@ You can customize the `web-codegen-scorer eval` script with the following flags:
77
77
` DEFAULT_MODEL_NAME ` .
78
78
- Example: ` web-codegen-scorer eval --model=gemini-2.5-flash --env=<config path> `
79
79
80
+ - ` --autorater-model=<name> ` : Specifies the model to use when automatically rating generated code. Defaults to the value of
81
+ ` DEFAULT_AUTORATER_MODEL_NAME ` .
82
+ - Example: ` web-codegen-scorer eval --model=gemini-2.5-flash --autorater-model=gemini-2.5-flash --env=<config path> `
83
+
80
84
- ` --runner=<name> ` : Specifies the runner to use to execute the eval. Supported runners are
81
85
` genkit ` (default) or ` gemini-cli ` .
82
86
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ function builder(argv: Argv): Argv<Options> {
152
152
. option ( 'autorater-model' , {
153
153
type : 'string' ,
154
154
default : DEFAULT_AUTORATER_MODEL_NAME ,
155
- descript : 'Model to use when automatically rating generated code' ,
155
+ description : 'Model to use when automatically rating generated code' ,
156
156
} )
157
157
. strict ( )
158
158
. version ( false )
You can’t perform that action at this time.
0 commit comments