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

Commit 0dcb992

Browse files
authored
Update default model to gpt-4 & add more extensions to file filter (#371)
<!-- 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 -->
1 parent 9ac127d commit 0dcb992

File tree

1 file changed

+49
-1
lines changed

1 file changed

+49
-1
lines changed

action.yml

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,49 @@ inputs:
3333
- https://github.com/isaacs/minimatch
3434
default: |
3535
!dist/**
36+
!**/*.app
37+
!**/*.bin
38+
!**/*.bz2
39+
!**/*.class
40+
!**/*.db
41+
!**/*.csv
42+
!**/*.tsv
43+
!**/*.dat
44+
!**/*.dll
45+
!**/*.dylib
46+
!**/*.egg
47+
!**/*.glif
48+
!**/*.gz
49+
!**/*.xz
50+
!**/*.zip
51+
!**/*.zst
52+
!**/*.ico
53+
!**/*.jar
54+
!**/*.tar
55+
!**/*.war
56+
!**/*.lo
57+
!**/*.log
58+
!**/*.mp3
59+
!**/*.mp4
60+
!**/*.nar
61+
!**/*.o
62+
!**/*.ogg
63+
!**/*.otf
64+
!**/*.p
65+
!**/*.pdf
66+
!**/*.pkl
67+
!**/*.pickle
68+
!**/*.pyc
69+
!**/*.pyd
70+
!**/*.pyo
71+
!**/*.rkt
72+
!**/*.so
73+
!**/*.ss
74+
!**/*.eot
75+
!**/*.exe
3676
!**/*.pb.go
3777
!**/*.lock
78+
!**/*.ttf
3879
!**/*.yaml
3980
!**/*.yml
4081
!**/*.cfg
@@ -46,10 +87,17 @@ inputs:
4687
!**/*.json
4788
!**/*.mmd
4889
!**/*.svg
90+
!**/*.jpeg
91+
!**/*.jpg
4992
!**/*.png
93+
!**/*.gif
94+
!**/*.webm
95+
!**/*.woff
96+
!**/*.woff2
5097
!**/*.dot
5198
!**/*.md5sum
5299
!**/*.wasm
100+
!**/*.snap
53101
!**/gen/**
54102
!**/_gen/**
55103
!**/generated/**
@@ -74,7 +122,7 @@ inputs:
74122
openai_heavy_model:
75123
required: false
76124
description: 'Model to use for complex tasks such as code reviews.'
77-
default: 'gpt-3.5-turbo'
125+
default: 'gpt-4'
78126
openai_model_temperature:
79127
required: false
80128
description: 'Temperature for GPT model'

0 commit comments

Comments
 (0)