xiaozhi-client 1.6.3-beta.3 → 1.6.3-beta.4
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/dist/WebServer.js +8 -8
- package/dist/WebServer.js.map +1 -1
- package/dist/WebServerStandalone.js +8 -8
- package/dist/WebServerStandalone.js.map +1 -1
- package/dist/cli.js +10 -10
- package/dist/cli.js.map +1 -1
- package/dist/mcpServerProxy.js +5 -5
- package/dist/mcpServerProxy.js.map +1 -1
- package/dist/package.json +5 -12
- package/dist/services/MCPServer.d.ts +9 -0
- package/dist/services/MCPServer.js +3 -3
- package/dist/services/MCPServer.js.map +1 -1
- package/dist/templates/docker/requirements.txt +16 -0
- package/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# xiaozhi-client Docker 环境的 Python 依赖包模板
|
|
2
|
+
#
|
|
3
|
+
# 🔧 使用说明:
|
|
4
|
+
# 1. 这是默认的依赖包模板,包含 MCP 服务器开发的常用包
|
|
5
|
+
# 2. 如需自定义依赖,请在 requirements.txt 文件中添加依赖包
|
|
6
|
+
# 3. 容器启动时会自动安装 requirements.txt 中的依赖包
|
|
7
|
+
#
|
|
8
|
+
# 📝 示例用法:
|
|
9
|
+
# 在主机的 ~/xiaozhi-client/requirements.txt 中添加:
|
|
10
|
+
# mcp-proxy>=0.8.2
|
|
11
|
+
# numpy>=1.24.0
|
|
12
|
+
#
|
|
13
|
+
# 然后重启容器,依赖会自动安装到虚拟环境中
|
|
14
|
+
|
|
15
|
+
# FastMCP - 构建 MCP 服务器的高级框架
|
|
16
|
+
# fastmcp>=2.11.0
|