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 095b8dd commit 479211fCopy full SHA for 479211f
1 file changed
.github/workflows/ai-triage.yml
@@ -81,15 +81,17 @@ jobs:
81
let triage;
82
try {
83
const res = await fetch(
84
- 'https://models.inference.ai.azure.com/chat/completions',
+ `https://models.github.ai/orgs/${owner}/inference/chat/completions`,
85
{
86
method: 'POST',
87
headers: {
88
+ 'Accept': 'application/vnd.github+json',
89
'Authorization': `Bearer ${process.env.GITHUB_TOKEN}`,
90
+ 'X-GitHub-Api-Version': '2026-03-10',
91
'Content-Type': 'application/json',
92
},
93
body: JSON.stringify({
- model: 'gpt-4o-mini',
94
+ model: 'openai/gpt-4.1-mini',
95
temperature: 0.1,
96
max_tokens: 400,
97
messages: [
0 commit comments