jinzd-ai-cli 0.1.41 → 0.1.43

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.
@@ -8,7 +8,7 @@ import { platform } from "os";
8
8
  import chalk from "chalk";
9
9
 
10
10
  // src/core/constants.ts
11
- var VERSION = "0.1.41";
11
+ var VERSION = "0.1.43";
12
12
  var APP_NAME = "ai-cli";
13
13
  var CONFIG_DIR_NAME = ".aicli";
14
14
  var CONFIG_FILE_NAME = "config.json";
package/dist/index.js CHANGED
@@ -29,7 +29,7 @@ import {
29
29
  SUBAGENT_MAX_ROUNDS_LIMIT,
30
30
  VERSION,
31
31
  runTestsTool
32
- } from "./chunk-TBFCZ6WL.js";
32
+ } from "./chunk-4MVOMCLY.js";
33
33
 
34
34
  // src/index.ts
35
35
  import { program } from "commander";
@@ -1179,6 +1179,8 @@ var DeepSeekProvider = class extends OpenAICompatibleProvider {
1179
1179
  // src/providers/zhipu.ts
1180
1180
  var ZhipuProvider = class extends OpenAICompatibleProvider {
1181
1181
  defaultBaseUrl = "https://open.bigmodel.cn/api/paas/v4";
1182
+ // GLM-5 等深度思考模型生成长内容需要较长时间,默认 5 分钟
1183
+ defaultTimeout = 3e5;
1182
1184
  info = {
1183
1185
  id: "zhipu",
1184
1186
  displayName: "\u667A\u8C31\u6E05\u8A00 (GLM)",
@@ -2089,7 +2091,7 @@ var Renderer = class {
2089
2091
  console.log(theme.dim(" /exit"));
2090
2092
  console.log(HR);
2091
2093
  console.log(theme.dim(" \u4E3B\u8981\u7279\u6027\uFF1A"));
2092
- console.log(feat("Agentic \u5FAA\u73AF\uFF08\u6700\u591A 20 \u8F6E\u5DE5\u5177\u8C03\u7528\uFF0C\u6700\u7EC8\u56DE\u7B54\u6D41\u5F0F\u8F93\u51FA\uFF09"));
2094
+ console.log(feat("Agentic \u5FAA\u73AF\uFF08\u6700\u591A 25 \u8F6E\u5DE5\u5177\u8C03\u7528\uFF0C\u6700\u7EC8\u56DE\u7B54\u6D41\u5F0F\u8F93\u51FA\uFF09"));
2093
2095
  console.log(feat("\u591A\u6A21\u6001\u8F93\u5165\uFF1A@\u6587\u4EF6\u8DEF\u5F84 \u5185\u8054\u56FE\u7247\uFF08base64\uFF09\u6216\u6587\u672C\u5230\u6D88\u606F"));
2094
2096
  console.log(feat("Git \u4E0A\u4E0B\u6587\u611F\u77E5\uFF1A\u542F\u52A8\u81EA\u52A8\u6CE8\u5165\u5206\u652F\u540D\u4E0E\u6587\u4EF6\u53D8\u66F4\u72B6\u6001"));
2095
2097
  console.log(feat("\u9879\u76EE\u4E0A\u4E0B\u6587\u6587\u4EF6\uFF1A\u81EA\u52A8\u52A0\u8F7D AICLI.md / CLAUDE.md\uFF08\u4E09\u5C42\u7EA7\uFF1A\u5168\u5C40/\u9879\u76EE/\u5B50\u76EE\u5F55\uFF09"));
@@ -3786,7 +3788,7 @@ ${hint}` : "")
3786
3788
  description: "Run project tests and show structured report",
3787
3789
  usage: "/test [command|filter]",
3788
3790
  async execute(args, _ctx) {
3789
- const { executeTests } = await import("./run-tests-S54Z3S5Q.js");
3791
+ const { executeTests } = await import("./run-tests-EDLA43LE.js");
3790
3792
  const argStr = args.join(" ").trim();
3791
3793
  let testArgs = {};
3792
3794
  if (argStr) {
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  executeTests,
4
4
  runTestsTool
5
- } from "./chunk-TBFCZ6WL.js";
5
+ } from "./chunk-4MVOMCLY.js";
6
6
  export {
7
7
  executeTests,
8
8
  runTestsTool
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jinzd-ai-cli",
3
- "version": "0.1.41",
3
+ "version": "0.1.43",
4
4
  "description": "Cross-platform REPL-style AI CLI with multi-provider support",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",