File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ Each example includes a complete workflow file that you can copy to your `.githu
7979| ` pull_number ` | PR number for template context extraction | No | ` ${{ github.event.pull_request.number }} ` |
8080| ` repo_name ` | Repository name for template context | No | ` ${{ github.repository }} ` |
8181| ` custom_context ` | Additional JSON context for templates | No | ` '{"priority": "high"}' ` |
82- | ` model ` | Model to use; passed through to auggie as --model | No | ` gpt-4o-mini ` |
82+ | ` model ` | Model to use; passed through to auggie as --model | No | ` gpt-4o-mini ` |
8383
8484\* Either ` instruction ` , ` instruction_file ` , or ` template_directory ` must be provided.
8585
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ async function runAugmentScript(inputs: ActionInputs): Promise<void> {
113113 instructionFile : instruction_value ,
114114 } ) ;
115115 }
116- const args = [ " --print" ] ;
116+ const args = [ ' --print' ] ;
117117 if ( inputs . model && inputs . model . trim ( ) . length > 0 ) {
118118 args . push ( '--model' , inputs . model . trim ( ) ) ;
119119 }
You can’t perform that action at this time.
0 commit comments