@agentscope-ai/chat 1.1.30 → 1.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.
Files changed (2) hide show
  1. package/bin/cli.js +8 -8
  2. package/package.json +2 -2
package/bin/cli.js CHANGED
@@ -1,14 +1,14 @@
1
- const { program } = require('commander');
1
+ // const { program } = require('commander');
2
2
  const { execSync } = require('child_process');
3
3
 
4
- program
5
- .name('agentscope-runtime-webui')
6
- .description('启动 AgentScope Runtime WebUI 服务')
7
- .option('-u, --url <url>', '指定后端 API 地址')
8
- .option('-t, --token <token>', '指定认证 token')
9
- .parse(process.argv);
4
+ // program
5
+ // .name('agentscope-runtime-webui')
6
+ // .description('启动 AgentScope Runtime WebUI 服务')
7
+ // .option('-u, --url <url>', '指定后端 API 地址')
8
+ // .option('-t, --token <token>', '指定认证 token')
9
+ // .parse(process.argv);
10
10
 
11
- const options = program.opts();
11
+ // const options = program.opts();
12
12
 
13
13
  async function startServer() {
14
14
  console.log('\n🚀 Starting AgentScope Runtime WebUI...\n');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentscope-ai/chat",
3
- "version": "1.1.30",
3
+ "version": "1.1.32",
4
4
  "description": "a free and open-source chat framework for building excellent LLM-powered chat experiences",
5
5
  "license": "Apache-2.0",
6
6
  "sideEffects": [
@@ -11,7 +11,7 @@
11
11
  "module": "lib/index.js",
12
12
  "types": "lib/index.d.ts",
13
13
  "bin": {
14
- "agentscope-runtime-webui": "./bin/cli.bundle.js"
14
+ "agentscope-runtime-webui": "./bin/cli.js"
15
15
  },
16
16
  "files": [
17
17
  "lib",