mpd-llm-cli 0.1.32 → 0.1.33

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/bundle/api.js CHANGED
@@ -27717,7 +27717,7 @@ async function createContentGeneratorConfig(model, authType) {
27717
27717
  return contentGeneratorConfig;
27718
27718
  }
27719
27719
  async function createContentGenerator(config2, sessionId2) {
27720
- const version2 = "0.1.32";
27720
+ const version2 = "0.1.33";
27721
27721
  const httpOptions = {
27722
27722
  headers: {
27723
27723
  "User-Agent": `GeminiCLI/${version2} (${process.platform}; ${process.arch})`
@@ -166405,7 +166405,7 @@ async function getPackageJson() {
166405
166405
  // packages/cli/src/utils/version.ts
166406
166406
  async function getCliVersion() {
166407
166407
  const pkgJson = await getPackageJson();
166408
- return "0.1.32";
166408
+ return "0.1.33";
166409
166409
  }
166410
166410
 
166411
166411
  // packages/cli/src/config/sandboxConfig.ts
package/bundle/gemini.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { createRequire } from 'module'; const require = createRequire(import.meta.url); globalThis.require = require; globalThis.__filename = require('url').fileURLToPath(import.meta.url); globalThis.__dirname = require('path').dirname(globalThis.__filename);
2
+ (async () => { if (typeof globalThis.require === 'undefined') { const mod = await import('module'); const require = mod.createRequire(import.meta.url); globalThis.require = require; globalThis.__filename = require('url').fileURLToPath(import.meta.url); globalThis.__dirname = require('path').dirname(globalThis.__filename); } })();
3
3
  var __create = Object.create;
4
4
  var __defProp = Object.defineProperty;
5
5
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -78281,7 +78281,7 @@ async function createContentGeneratorConfig(model, authType) {
78281
78281
  return contentGeneratorConfig;
78282
78282
  }
78283
78283
  async function createContentGenerator(config2, sessionId2) {
78284
- const version3 = "0.1.32";
78284
+ const version3 = "0.1.33";
78285
78285
  const httpOptions = {
78286
78286
  headers: {
78287
78287
  "User-Agent": `GeminiCLI/${version3} (${process.platform}; ${process.arch})`
@@ -215342,7 +215342,7 @@ var init_langfuseClient = __esm({
215342
215342
  userId,
215343
215343
  metadata: {
215344
215344
  ...safeMetadata,
215345
- cli_version: this.safeString("0.1.32", "unknown"),
215345
+ cli_version: this.safeString("0.1.33", "unknown"),
215346
215346
  model: this.safeString(process.env.CUSTOM_LLM_MODEL_NAME, "gemini"),
215347
215347
  auth_type: process.env.USE_CUSTOM_LLM ? "custom_llm" : "google_oauth",
215348
215348
  environment: this.safeString(this.configManager.getConfig()?.environment, "unknown")
@@ -216509,7 +216509,7 @@ var init_langfuseIntegration = __esm({
216509
216509
  const metadata = {
216510
216510
  model: this.config.getModel(),
216511
216511
  auth_type: this.config.getContentGeneratorConfig()?.authType,
216512
- cli_version: "0.1.32",
216512
+ cli_version: "0.1.33",
216513
216513
  start_time: (/* @__PURE__ */ new Date()).toISOString(),
216514
216514
  session_id: this.sessionId
216515
216515
  };
@@ -216568,7 +216568,7 @@ var init_langfuseIntegration = __esm({
216568
216568
  totalCachedTokens: sessionStats.totalCachedTokens,
216569
216569
  totalPromptTokens: sessionStats.totalPromptTokens,
216570
216570
  metadata: {
216571
- cli_version: "0.1.32",
216571
+ cli_version: "0.1.33",
216572
216572
  auth_type: this.config.getContentGeneratorConfig()?.authType,
216573
216573
  session_end_time: (/* @__PURE__ */ new Date()).toISOString()
216574
216574
  }
@@ -216640,7 +216640,7 @@ var init_langfuseIntegration = __esm({
216640
216640
  error,
216641
216641
  metadata: {
216642
216642
  session_id: this.sessionId,
216643
- cli_version: "0.1.32",
216643
+ cli_version: "0.1.33",
216644
216644
  auth_type: this.config.getContentGeneratorConfig()?.authType
216645
216645
  }
216646
216646
  });
@@ -326717,7 +326717,7 @@ async function getPackageJson() {
326717
326717
  // packages/cli/src/utils/version.ts
326718
326718
  async function getCliVersion() {
326719
326719
  const pkgJson = await getPackageJson();
326720
- return "0.1.32";
326720
+ return "0.1.33";
326721
326721
  }
326722
326722
 
326723
326723
  // packages/cli/src/ui/commands/memoryCommand.ts
@@ -348056,7 +348056,7 @@ var DataCollector = class {
348056
348056
  // 提取元数据
348057
348057
  extractMetadata(data) {
348058
348058
  return {
348059
- cli_version: "0.1.32",
348059
+ cli_version: "0.1.33",
348060
348060
  model: process.env.CUSTOM_LLM_MODEL_NAME || "gemini",
348061
348061
  auth_type: process.env.USE_CUSTOM_LLM ? "custom_llm" : "google_oauth",
348062
348062
  project_path: data.projectPath,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mpd-llm-cli",
3
- "version": "0.1.32",
3
+ "version": "0.1.33",
4
4
  "engines": {
5
5
  "node": ">=20.0.0"
6
6
  },