You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ jobs:
37
37
pull-requests: write
38
38
steps:
39
39
- uses: actions/checkout@v4
40
-
- uses: jlowin/ai-labeler@v0.4.0
40
+
- uses: jlowin/ai-labeler@v0.5.0
41
41
with:
42
42
include-repo-labels: true
43
43
openai-api-key: ${{ secrets.OPENAI_API_KEY }}
@@ -66,7 +66,7 @@ By default, the AI labeler will use all labels found in your repository, as well
66
66
To disable this behavior, set `include-repo-labels` to `false`. In this case, the AI will only use labels defined in your config file. See the fine-tuning section below for more details.
67
67
68
68
```yaml
69
-
- uses: jlowin/ai-labeler@v0.4.0
69
+
- uses: jlowin/ai-labeler@v0.5.0
70
70
with:
71
71
include-repo-labels: false # Only use labels defined in config
72
72
```
@@ -81,7 +81,7 @@ You must specify an LLM provider and provide an API key. You can use either Open
81
81
By default, the AI labeler uses OpenAI's `gpt-4o-mini` model. This is an excellent and affordable choice for most users. However, 4o-mini can get confused by complex per-label instructions. You can specify a different model if you'd like:
82
82
83
83
```yaml
84
-
- uses: jlowin/ai-labeler@v0.4.0
84
+
- uses: jlowin/ai-labeler@v0.5.0
85
85
with:
86
86
controlflow-llm-model: openai/gpt-4o-mini
87
87
```
@@ -97,7 +97,7 @@ Note that you must provide an appropriate API key for your selected LLM provider
97
97
#### OpenAI
98
98
99
99
```yaml
100
-
- uses: jlowin/ai-labeler@v0.4.0
100
+
- uses: jlowin/ai-labeler@v0.5.0
101
101
with:
102
102
openai-api-key: ${{ secrets.OPENAI_API_KEY }}
103
103
@@ -110,7 +110,7 @@ Set your OpenAI API key as a repository secret named `OPENAI_API_KEY`. Since the
0 commit comments