mpd-llm-cli 0.1.37 → 0.1.38

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
@@ -27724,7 +27724,7 @@ async function createContentGeneratorConfig(model, authType) {
27724
27724
  return contentGeneratorConfig;
27725
27725
  }
27726
27726
  async function createContentGenerator(config2, sessionId2) {
27727
- const version2 = "0.1.37";
27727
+ const version2 = "0.1.38";
27728
27728
  const httpOptions = {
27729
27729
  headers: {
27730
27730
  "User-Agent": `GeminiCLI/${version2} (${process.platform}; ${process.arch})`
@@ -166412,7 +166412,7 @@ async function getPackageJson() {
166412
166412
  // packages/cli/src/utils/version.ts
166413
166413
  async function getCliVersion() {
166414
166414
  const pkgJson = await getPackageJson();
166415
- return "0.1.37";
166415
+ return "0.1.38";
166416
166416
  }
166417
166417
 
166418
166418
  // packages/cli/src/config/sandboxConfig.ts
package/bundle/gemini.js CHANGED
@@ -62351,7 +62351,7 @@ async function createContentGeneratorConfig(model, authType) {
62351
62351
  return contentGeneratorConfig;
62352
62352
  }
62353
62353
  async function createContentGenerator(config2, sessionId2) {
62354
- const version3 = "0.1.37";
62354
+ const version3 = "0.1.38";
62355
62355
  const httpOptions = {
62356
62356
  headers: {
62357
62357
  "User-Agent": `GeminiCLI/${version3} (${process.platform}; ${process.arch})`
@@ -199411,7 +199411,7 @@ var init_langfuseClient = __esm({
199411
199411
  userId,
199412
199412
  metadata: {
199413
199413
  ...safeMetadata,
199414
- cli_version: this.safeString("0.1.37", "unknown"),
199414
+ cli_version: this.safeString("0.1.38", "unknown"),
199415
199415
  model: this.safeString(process.env.CUSTOM_LLM_MODEL_NAME, "gemini"),
199416
199416
  auth_type: process.env.USE_CUSTOM_LLM ? "custom_llm" : "google_oauth",
199417
199417
  environment: this.safeString(this.configManager.getConfig()?.environment, "unknown")
@@ -200578,7 +200578,7 @@ var init_langfuseIntegration = __esm({
200578
200578
  const metadata = {
200579
200579
  model: this.config.getModel(),
200580
200580
  auth_type: this.config.getContentGeneratorConfig()?.authType,
200581
- cli_version: "0.1.37",
200581
+ cli_version: "0.1.38",
200582
200582
  start_time: (/* @__PURE__ */ new Date()).toISOString(),
200583
200583
  session_id: this.sessionId
200584
200584
  };
@@ -200637,7 +200637,7 @@ var init_langfuseIntegration = __esm({
200637
200637
  totalCachedTokens: sessionStats.totalCachedTokens,
200638
200638
  totalPromptTokens: sessionStats.totalPromptTokens,
200639
200639
  metadata: {
200640
- cli_version: "0.1.37",
200640
+ cli_version: "0.1.38",
200641
200641
  auth_type: this.config.getContentGeneratorConfig()?.authType,
200642
200642
  session_end_time: (/* @__PURE__ */ new Date()).toISOString()
200643
200643
  }
@@ -200709,7 +200709,7 @@ var init_langfuseIntegration = __esm({
200709
200709
  error,
200710
200710
  metadata: {
200711
200711
  session_id: this.sessionId,
200712
- cli_version: "0.1.37",
200712
+ cli_version: "0.1.38",
200713
200713
  auth_type: this.config.getContentGeneratorConfig()?.authType
200714
200714
  }
200715
200715
  });
@@ -310114,7 +310114,7 @@ import { promises as fs36 } from "fs";
310114
310114
  import path40 from "path";
310115
310115
 
310116
310116
  // packages/cli/src/generated/git-commit.ts
310117
- var GIT_COMMIT_INFO = "fe41993 (local modifications)";
310117
+ var GIT_COMMIT_INFO = "3f6bfbf (local modifications)";
310118
310118
 
310119
310119
  // node_modules/read-package-up/index.js
310120
310120
  import path35 from "node:path";
@@ -310327,7 +310327,7 @@ async function getPackageJson() {
310327
310327
  // packages/cli/src/utils/version.ts
310328
310328
  async function getCliVersion() {
310329
310329
  const pkgJson = await getPackageJson();
310330
- return "0.1.37";
310330
+ return "0.1.38";
310331
310331
  }
310332
310332
 
310333
310333
  // packages/cli/src/ui/commands/memoryCommand.ts
@@ -331596,7 +331596,7 @@ var DataCollector = class {
331596
331596
  // 提取元数据
331597
331597
  extractMetadata(data) {
331598
331598
  return {
331599
- cli_version: "0.1.37",
331599
+ cli_version: "0.1.38",
331600
331600
  model: process.env.CUSTOM_LLM_MODEL_NAME || "gemini",
331601
331601
  auth_type: process.env.USE_CUSTOM_LLM ? "custom_llm" : "google_oauth",
331602
331602
  project_path: data.projectPath,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mpd-llm-cli",
3
- "version": "0.1.37",
3
+ "version": "0.1.38",
4
4
  "engines": {
5
5
  "node": ">=20.0.0"
6
6
  },
@@ -94,6 +94,7 @@
94
94
  },
95
95
  "dependencies": {
96
96
  "@google/genai": "^1.9.0",
97
+ "rotating-file-stream": "^3.2.7",
97
98
  "tiktoken": "^1.0.21"
98
99
  }
99
100
  }