n8n-nodes-github-copilot 3.38.6 → 3.38.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -308,18 +308,14 @@ class GitHubCopilotOpenAI {
|
|
|
308
308
|
message: {
|
|
309
309
|
role: choice.message.role,
|
|
310
310
|
content: processedContent,
|
|
311
|
+
refusal: choice.message.refusal || null,
|
|
311
312
|
},
|
|
313
|
+
logprobs: choice.logprobs || null,
|
|
312
314
|
finish_reason: choice.finish_reason,
|
|
313
315
|
};
|
|
314
316
|
if (choice.message.tool_calls && choice.message.tool_calls.length > 0) {
|
|
315
317
|
choiceObj.message.tool_calls = choice.message.tool_calls;
|
|
316
318
|
}
|
|
317
|
-
if (choice.message.refusal) {
|
|
318
|
-
choiceObj.message.refusal = choice.message.refusal;
|
|
319
|
-
}
|
|
320
|
-
if (choice.logprobs) {
|
|
321
|
-
choiceObj.logprobs = choice.logprobs;
|
|
322
|
-
}
|
|
323
319
|
return choiceObj;
|
|
324
320
|
}),
|
|
325
321
|
usage: response.usage || {
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-github-copilot",
|
|
3
|
-
"version": "3.38.
|
|
3
|
+
"version": "3.38.7",
|
|
4
4
|
"description": "n8n community node for GitHub Copilot with CLI integration, Chat API access, and AI Chat Model for workflows - access GPT-5, Claude, Gemini and more using your Copilot subscription",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/sufficit/n8n-nodes-github-copilot",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-github-copilot",
|
|
3
|
-
"version": "3.38.
|
|
3
|
+
"version": "3.38.7",
|
|
4
4
|
"description": "n8n community node for GitHub Copilot with CLI integration, Chat API access, and AI Chat Model for workflows - access GPT-5, Claude, Gemini and more using your Copilot subscription",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/sufficit/n8n-nodes-github-copilot",
|