@rdmind/rdmind 0.2.7-alpha.1 → 0.2.7-alpha.2
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/cli.js +4 -5
- package/package.json +2 -2
package/cli.js
CHANGED
|
@@ -160756,7 +160756,7 @@ __export(geminiContentGenerator_exports2, {
|
|
|
160756
160756
|
createGeminiContentGenerator: () => createGeminiContentGenerator
|
|
160757
160757
|
});
|
|
160758
160758
|
function createGeminiContentGenerator(config2, gcConfig) {
|
|
160759
|
-
const version2 = "0.2.7-alpha.
|
|
160759
|
+
const version2 = "0.2.7-alpha.2";
|
|
160760
160760
|
const userAgent2 = config2.userAgent || `QwenCode/${version2} (${process.platform}; ${process.arch})`;
|
|
160761
160761
|
const baseHeaders = {
|
|
160762
160762
|
"User-Agent": userAgent2
|
|
@@ -361095,7 +361095,7 @@ __name(getPackageJson, "getPackageJson");
|
|
|
361095
361095
|
// packages/cli/src/utils/version.ts
|
|
361096
361096
|
async function getCliVersion() {
|
|
361097
361097
|
const pkgJson = await getPackageJson();
|
|
361098
|
-
return "0.2.7-alpha.
|
|
361098
|
+
return "0.2.7-alpha.2";
|
|
361099
361099
|
}
|
|
361100
361100
|
__name(getCliVersion, "getCliVersion");
|
|
361101
361101
|
|
|
@@ -413406,9 +413406,8 @@ function extractFunctionCalls(parts) {
|
|
|
413406
413406
|
for (const part of parts) {
|
|
413407
413407
|
if ("functionCall" in part && part.functionCall) {
|
|
413408
413408
|
const fc = part.functionCall;
|
|
413409
|
-
const uniqueSuffix = Date.now().toString(36) + Math.random().toString(36).slice(2, 6);
|
|
413410
413409
|
calls.push({
|
|
413411
|
-
id: fc.id || `call-${calls.length}
|
|
413410
|
+
id: fc.id || `call-${calls.length}`,
|
|
413412
413411
|
name: fc.name || "unknown",
|
|
413413
413412
|
args: fc.args || {}
|
|
413414
413413
|
});
|
|
@@ -427533,7 +427532,7 @@ var GeminiAgent = class {
|
|
|
427533
427532
|
name: APPROVAL_MODE_INFO[mode].name,
|
|
427534
427533
|
description: APPROVAL_MODE_INFO[mode].description
|
|
427535
427534
|
}));
|
|
427536
|
-
const version2 = "0.2.7-alpha.
|
|
427535
|
+
const version2 = "0.2.7-alpha.2";
|
|
427537
427536
|
return {
|
|
427538
427537
|
protocolVersion: PROTOCOL_VERSION,
|
|
427539
427538
|
agentInfo: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rdmind/rdmind",
|
|
3
|
-
"version": "0.2.7-alpha.
|
|
3
|
+
"version": "0.2.7-alpha.2",
|
|
4
4
|
"description": "RDMind - AI-powered coding assistant",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "cli.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"locales"
|
|
20
20
|
],
|
|
21
21
|
"config": {
|
|
22
|
-
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.2.7-alpha.
|
|
22
|
+
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.2.7-alpha.2"
|
|
23
23
|
},
|
|
24
24
|
"publishConfig": {
|
|
25
25
|
"access": "public"
|