Skip to content
This repository has been archived by the owner on Mar 6, 2024. It is now read-only.

Commit

Permalink
Update default model to gpt-4 & add more extensions to file filter (#371
Browse files Browse the repository at this point in the history
)

<!-- This is an auto-generated comment: release notes by openai -->
### Summary by OpenAI

**New Feature:**
- The default model has been updated to 'gpt-4' in `action.yml`.
- Additional file extensions have been added to the file filter in
`action.yml`.

> 🎉 With GPT-4, we take a stride,
> 
> In AI's journey, a joyous ride. 🚀
> 
> More files now within our sight, 👀
> 
> Making our codebase shine so bright! 💡
<!-- end of auto-generated comment: release notes by openai -->
  • Loading branch information
harjotgill authored Jul 21, 2023
1 parent 9ac127d commit 0dcb992
Showing 1 changed file with 49 additions and 1 deletion.
50 changes: 49 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,49 @@ inputs:
- https://github.com/isaacs/minimatch
default: |
!dist/**
!**/*.app
!**/*.bin
!**/*.bz2
!**/*.class
!**/*.db
!**/*.csv
!**/*.tsv
!**/*.dat
!**/*.dll
!**/*.dylib
!**/*.egg
!**/*.glif
!**/*.gz
!**/*.xz
!**/*.zip
!**/*.zst
!**/*.ico
!**/*.jar
!**/*.tar
!**/*.war
!**/*.lo
!**/*.log
!**/*.mp3
!**/*.mp4
!**/*.nar
!**/*.o
!**/*.ogg
!**/*.otf
!**/*.p
!**/*.pdf
!**/*.pkl
!**/*.pickle
!**/*.pyc
!**/*.pyd
!**/*.pyo
!**/*.rkt
!**/*.so
!**/*.ss
!**/*.eot
!**/*.exe
!**/*.pb.go
!**/*.lock
!**/*.ttf
!**/*.yaml
!**/*.yml
!**/*.cfg
Expand All @@ -46,10 +87,17 @@ inputs:
!**/*.json
!**/*.mmd
!**/*.svg
!**/*.jpeg
!**/*.jpg
!**/*.png
!**/*.gif
!**/*.webm
!**/*.woff
!**/*.woff2
!**/*.dot
!**/*.md5sum
!**/*.wasm
!**/*.snap
!**/gen/**
!**/_gen/**
!**/generated/**
Expand All @@ -74,7 +122,7 @@ inputs:
openai_heavy_model:
required: false
description: 'Model to use for complex tasks such as code reviews.'
default: 'gpt-3.5-turbo'
default: 'gpt-4'
openai_model_temperature:
required: false
description: 'Temperature for GPT model'
Expand Down

0 comments on commit 0dcb992

Please sign in to comment.