mpd-llm-cli 0.1.28 → 0.1.32
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/README.md +1 -1
- package/bundle/api.cjs +7 -1
- package/bundle/api.js +10 -4
- package/bundle/gemini.js +81470 -7438
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
</div>
|
|
10
10
|
|
|
11
|
-
This repository contains the MPD LLM CLI([
|
|
11
|
+
This repository contains the MPD LLM CLI([MPD AI Cli](https://git.rakuten-it.com/projects/MPD-AI/repos/mpd-llm-cli/browse/) version of the Fork), a command-line AI workflow tool that connects to your
|
|
12
12
|
tools, understands your code and accelerates your workflows. It supports multiple LLM providers including Gemini, OpenAI, and any custom LLM API that follows OpenAI's API format.
|
|
13
13
|
|
|
14
14
|
|
package/bundle/api.cjs
CHANGED
|
@@ -19951,7 +19951,7 @@ var init_setup = __esm({
|
|
|
19951
19951
|
init_server();
|
|
19952
19952
|
ProjectIdRequiredError = class extends Error {
|
|
19953
19953
|
constructor() {
|
|
19954
|
-
super("This account requires setting the GOOGLE_CLOUD_PROJECT env var. See https://
|
|
19954
|
+
super("This account requires setting the GOOGLE_CLOUD_PROJECT env var. See https://git.rakuten-it.com/projects/MPD-AI/repos/mpd-llm-cli/browse/docs/cli/authentication.md");
|
|
19955
19955
|
}
|
|
19956
19956
|
};
|
|
19957
19957
|
}
|
|
@@ -140499,6 +140499,12 @@ function _sanitizeParameters(schema, visited) {
|
|
|
140499
140499
|
return;
|
|
140500
140500
|
}
|
|
140501
140501
|
visited.add(schema);
|
|
140502
|
+
if ("$schema" in schema) {
|
|
140503
|
+
delete schema.$schema;
|
|
140504
|
+
}
|
|
140505
|
+
if ("additionalProperties" in schema) {
|
|
140506
|
+
delete schema.additionalProperties;
|
|
140507
|
+
}
|
|
140502
140508
|
if (schema.anyOf) {
|
|
140503
140509
|
schema.default = void 0;
|
|
140504
140510
|
for (const item of schema.anyOf) {
|
package/bundle/api.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { createRequire } from 'module'; const require = createRequire(import.meta.url); globalThis.__filename = require('url').fileURLToPath(import.meta.url); globalThis.__dirname = require('path').dirname(globalThis.__filename);
|
|
1
|
+
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
2
|
var __create = Object.create;
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -19955,7 +19955,7 @@ var init_setup = __esm({
|
|
|
19955
19955
|
init_server();
|
|
19956
19956
|
ProjectIdRequiredError = class extends Error {
|
|
19957
19957
|
constructor() {
|
|
19958
|
-
super("This account requires setting the GOOGLE_CLOUD_PROJECT env var. See https://
|
|
19958
|
+
super("This account requires setting the GOOGLE_CLOUD_PROJECT env var. See https://git.rakuten-it.com/projects/MPD-AI/repos/mpd-llm-cli/browse/docs/cli/authentication.md");
|
|
19959
19959
|
}
|
|
19960
19960
|
};
|
|
19961
19961
|
}
|
|
@@ -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.
|
|
27720
|
+
const version2 = "0.1.32";
|
|
27721
27721
|
const httpOptions = {
|
|
27722
27722
|
headers: {
|
|
27723
27723
|
"User-Agent": `GeminiCLI/${version2} (${process.platform}; ${process.arch})`
|
|
@@ -140495,6 +140495,12 @@ function _sanitizeParameters(schema, visited) {
|
|
|
140495
140495
|
return;
|
|
140496
140496
|
}
|
|
140497
140497
|
visited.add(schema);
|
|
140498
|
+
if ("$schema" in schema) {
|
|
140499
|
+
delete schema.$schema;
|
|
140500
|
+
}
|
|
140501
|
+
if ("additionalProperties" in schema) {
|
|
140502
|
+
delete schema.additionalProperties;
|
|
140503
|
+
}
|
|
140498
140504
|
if (schema.anyOf) {
|
|
140499
140505
|
schema.default = void 0;
|
|
140500
140506
|
for (const item of schema.anyOf) {
|
|
@@ -166399,7 +166405,7 @@ async function getPackageJson() {
|
|
|
166399
166405
|
// packages/cli/src/utils/version.ts
|
|
166400
166406
|
async function getCliVersion() {
|
|
166401
166407
|
const pkgJson = await getPackageJson();
|
|
166402
|
-
return "0.1.
|
|
166408
|
+
return "0.1.32";
|
|
166403
166409
|
}
|
|
166404
166410
|
|
|
166405
166411
|
// packages/cli/src/config/sandboxConfig.ts
|