@gitlab/gitlab-ai-provider 3.6.0 → 3.6.1
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.
package/dist/index.mjs
CHANGED
|
@@ -282,7 +282,8 @@ var GitLabAnthropicLanguageModel = class {
|
|
|
282
282
|
const messages = [];
|
|
283
283
|
for (const message of prompt) {
|
|
284
284
|
if (message.role === "system") {
|
|
285
|
-
systemMessage =
|
|
285
|
+
systemMessage = systemMessage ? `${systemMessage}
|
|
286
|
+
${message.content}` : message.content;
|
|
286
287
|
continue;
|
|
287
288
|
}
|
|
288
289
|
if (message.role === "user") {
|
|
@@ -1631,7 +1632,7 @@ var GitLabOAuthManager = class {
|
|
|
1631
1632
|
};
|
|
1632
1633
|
|
|
1633
1634
|
// src/version.ts
|
|
1634
|
-
var VERSION = true ? "3.
|
|
1635
|
+
var VERSION = true ? "3.6.0" : "0.0.0-dev";
|
|
1635
1636
|
|
|
1636
1637
|
// src/gitlab-provider.ts
|
|
1637
1638
|
import * as fs from "fs";
|