Skip to content

Commit 7332b49

Browse files
workflows: ai-review: use openai
Try openai innstad of anthropic. Signed-off-by: Giacomo Dematteis <giacomo.dematteis@nordicsemi.no>
1 parent 334d8f1 commit 7332b49

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/ai-review.yaml

+11-5
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,17 @@ jobs:
1919
with:
2020
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2121

22-
# AI provider
23-
AI_PROVIDER: "anthropic"
24-
AI_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
25-
AI_MODEL: "claude-3-5-sonnet-20241022"
26-
AI_TEMPERATURE: 0.1
22+
# # Claude
23+
# AI_PROVIDER: "anthropic"
24+
# AI_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
25+
# AI_MODEL: "claude-3-5-sonnet-20241022"
26+
# AI_TEMPERATURE: 0.1
27+
28+
# Openai
29+
AI_PROVIDER: "openai"
30+
AI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
31+
AI_MODEL: "gpt-4o"
32+
AI_TEMPERATURE: 0.3
2733

2834
# Optional configurations
2935
APPROVE_REVIEWS: true

0 commit comments

Comments
 (0)