xiaozhi-client 1.9.2-beta.1 → 1.9.3-beta.0
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 +4 -4
- package/dist/WebServerStandalone.js.map +1 -1
- package/dist/cli.js.map +1 -1
- package/dist/mcpServerProxy.js.map +1 -1
- package/dist/package.json +21 -18
- package/docs/arch/{cache.md → cache.mdx} +62 -95
- package/docs/development/docker-build.mdx +256 -0
- package/docs/docs.json +2 -1
- package/docs/python-dependencies.md +2 -2
- package/docs/usage/docker.mdx +4 -4
- package/package.json +21 -18
- package/dist/templates/docker/mcpServers/calculator.js +0 -106
- package/dist/templates/docker/mcpServers/datetime.js +0 -390
- package/dist/templates/docker/package.json +0 -13
- package/dist/templates/docker/requirements.txt +0 -16
- package/dist/templates/docker/xiaozhi.config.json +0 -21
- package/templates/docker/mcpServers/calculator.js +0 -106
- package/templates/docker/mcpServers/datetime.js +0 -390
- package/templates/docker/package.json +0 -13
- package/templates/docker/requirements.txt +0 -16
- package/templates/docker/xiaozhi.config.json +0 -21
package/README.md
CHANGED
|
@@ -76,13 +76,13 @@ xiaozhi start
|
|
|
76
76
|
##### 方式一:使用启动脚本(推荐)
|
|
77
77
|
|
|
78
78
|
```bash
|
|
79
|
-
curl -fsSL https://raw.githubusercontent.com/shenjingnan/xiaozhi-client/main/docker
|
|
79
|
+
curl -fsSL https://raw.githubusercontent.com/shenjingnan/xiaozhi-client/main/docker/scripts/start.sh | bash
|
|
80
80
|
```
|
|
81
81
|
|
|
82
82
|
> 无法访问 `Github` 可以使用 `Gitee` 替代
|
|
83
83
|
|
|
84
84
|
```bash
|
|
85
|
-
curl -fsSL https://gitee.com/shenjingnan/xiaozhi-client/raw/main/docker
|
|
85
|
+
curl -fsSL https://gitee.com/shenjingnan/xiaozhi-client/raw/main/docker/scripts/start.sh | bash
|
|
86
86
|
```
|
|
87
87
|
|
|
88
88
|
##### 方式二:使用 Docker Compose
|
|
@@ -90,13 +90,13 @@ curl -fsSL https://gitee.com/shenjingnan/xiaozhi-client/raw/main/docker-start.sh
|
|
|
90
90
|
获取 docker-compose.yml 文件:
|
|
91
91
|
|
|
92
92
|
```bash
|
|
93
|
-
curl -O https://raw.githubusercontent.com/shenjingnan/xiaozhi-client/main/docker-compose.yml
|
|
93
|
+
curl -O https://raw.githubusercontent.com/shenjingnan/xiaozhi-client/main/docker/docker-compose.yml
|
|
94
94
|
```
|
|
95
95
|
|
|
96
96
|
> 无法访问 `Github` 可以使用 `Gitee` 替代
|
|
97
97
|
|
|
98
98
|
```bash
|
|
99
|
-
curl -O https://gitee.com/shenjingnan/xiaozhi-client/raw/main/docker-compose.yml
|
|
99
|
+
curl -O https://gitee.com/shenjingnan/xiaozhi-client/raw/main/docker/docker-compose.yml
|
|
100
100
|
```
|
|
101
101
|
|
|
102
102
|
```bash
|