@agentscope-ai/chat 1.1.36 → 1.1.37-beta.1764141651006
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/bin/cli.js +1 -1
- package/package.json +2 -2
package/bin/cli.js
CHANGED
|
@@ -25,7 +25,7 @@ async function startServer() {
|
|
|
25
25
|
})
|
|
26
26
|
|
|
27
27
|
execSync(
|
|
28
|
-
`cd agentscope-runtime/web/starter_webui && npm install && BASE_URL=${options.url} TOKEN=${options.token} npm run dev`,
|
|
28
|
+
`cd agentscope-runtime/web/starter_webui && npm install && BASE_URL=${options.url || 'BASE_URL'} TOKEN=${options.token || 'TOKEN'} npm run dev`,
|
|
29
29
|
{
|
|
30
30
|
stdio: 'inherit',
|
|
31
31
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentscope-ai/chat",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.37-beta.1764141651006",
|
|
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": [
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"lint:css": "stylelint \"{src,test}/**/*.{css,less}\"",
|
|
32
32
|
"lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
|
|
33
33
|
"llms:build": "LLM=true dumi build",
|
|
34
|
-
"prepare": "
|
|
34
|
+
"prepare": "dumi setup",
|
|
35
35
|
"src:build": "father build",
|
|
36
36
|
"start": "npm run dev"
|
|
37
37
|
},
|