@rdmind/rdmind 0.2.5-alpha.2 → 0.2.5

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.
Files changed (2) hide show
  1. package/cli.js +5 -3
  2. package/package.json +2 -2
package/cli.js CHANGED
@@ -133746,6 +133746,8 @@ var init_tokenLimits = __esm({
133746
133746
  [/^glm-4\.6(?:-.*)?$/, 202752],
133747
133747
  // exact limit from the model config file
133748
133748
  [/^glm-4\.7(?:-.*)?$/, LIMITS["200k"]],
133749
+ [/^glm-5(?:-.*)?$/, LIMITS["200k"]],
133750
+ // GLM-5: 200K context window
133749
133751
  // -------------------
133750
133752
  // DeepSeek
133751
133753
  // -------------------
@@ -159680,7 +159682,7 @@ __export(geminiContentGenerator_exports2, {
159680
159682
  createGeminiContentGenerator: () => createGeminiContentGenerator
159681
159683
  });
159682
159684
  function createGeminiContentGenerator(config2, gcConfig) {
159683
- const version2 = "0.2.5-alpha.2";
159685
+ const version2 = "0.2.5";
159684
159686
  const userAgent2 = config2.userAgent || `QwenCode/${version2} (${process.platform}; ${process.arch})`;
159685
159687
  const baseHeaders = {
159686
159688
  "User-Agent": userAgent2
@@ -360056,7 +360058,7 @@ __name(getPackageJson, "getPackageJson");
360056
360058
  // packages/cli/src/utils/version.ts
360057
360059
  async function getCliVersion() {
360058
360060
  const pkgJson = await getPackageJson();
360059
- return "0.2.5-alpha.2";
360061
+ return "0.2.5";
360060
360062
  }
360061
360063
  __name(getCliVersion, "getCliVersion");
360062
360064
 
@@ -426042,7 +426044,7 @@ var GeminiAgent = class {
426042
426044
  name: APPROVAL_MODE_INFO[mode].name,
426043
426045
  description: APPROVAL_MODE_INFO[mode].description
426044
426046
  }));
426045
- const version2 = "0.2.5-alpha.2";
426047
+ const version2 = "0.2.5";
426046
426048
  return {
426047
426049
  protocolVersion: PROTOCOL_VERSION,
426048
426050
  agentInfo: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rdmind/rdmind",
3
- "version": "0.2.5-alpha.2",
3
+ "version": "0.2.5",
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.5-alpha.2"
22
+ "sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.2.5"
23
23
  },
24
24
  "publishConfig": {
25
25
  "access": "public"