We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2f830c commit ef6f426Copy full SHA for ef6f426
scripts/generate-contributor-pool.js
@@ -23,8 +23,8 @@ const now = moment();
23
const firstDayOfPreviousMonth = now.clone().subtract(1, "month").startOf("month");
24
const lastDayOfPreviousMonth = firstDayOfPreviousMonth.clone().endOf("month");
25
26
-const AI_URL = "https://models.github.ai/inference/chat/completions";
27
-const AI_MODEL = "openai/gpt-4o-mini";
+const AI_URL = "https://api.openai.com/v1/chat/completions";
+const AI_MODEL = "gpt-4o-mini";
28
29
const PROMPT = `You will be given a JSON object where the keys are GitHub
30
usernames and the values are arrays of pull request objects that were
0 commit comments