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:
7777 ` DEFAULT_MODEL_NAME ` .
7878 - Example: ` web-codegen-scorer eval --model=gemini-2.5-flash --env=<config path> `
7979
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+
8084- ` --runner=<name> ` : Specifies the runner to use to execute the eval. Supported runners are
8185 ` genkit ` (default) or ` gemini-cli ` .
8286
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ function builder(argv: Argv): Argv<Options> {
152152 . option ( 'autorater-model' , {
153153 type : 'string' ,
154154 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' ,
156156 } )
157157 . strict ( )
158158 . version ( false )
You can’t perform that action at this time.
0 commit comments