升级了xiaozhi-esp32-srver、xiaozhi-esp32-webui、xiaozhi-esp32-server-mini、xiaozhi-esp32-server-java

This commit is contained in:
waxgourd
2025-04-28 20:31:26 +08:00
parent 098dbad7d0
commit 9ee243842a
8 changed files with 23 additions and 12 deletions

View File

@@ -12,8 +12,6 @@ init: false
host_network: false host_network: false
map: map:
- config:rw - config:rw
services:
- mysql:need
options: options:
mysql_host: "core-mariadb" mysql_host: "core-mariadb"
mysql_port: 3306 mysql_port: 3306

View File

@@ -1,3 +1,8 @@
## 0.3.12 (2025-04-28)
- 增加支持 OTA 接口
- 支持下发 WebSocket 接口地址
## 0.3.11 (2025-04-27) ## 0.3.11 (2025-04-27)
- 版本升级 - 版本升级
## 0.3.4 (2025-04-25) ## 0.3.4 (2025-04-25)

View File

@@ -1,5 +1,5 @@
name: "小智 AI Server 极速版" name: "小智 AI Server 极速版"
version: "0.3.11" version: "0.3.12"
slug: "xiaozhi_esp32_server_mini" slug: "xiaozhi_esp32_server_mini"
description: "小智 AI Server 极速版 - 提供语音识别、对话和控制功能支持与ESP32设备通信" description: "小智 AI Server 极速版 - 提供语音识别、对话和控制功能支持与ESP32设备通信"
url: "https://gitcode.com/waxgourd/addons" url: "https://gitcode.com/waxgourd/addons"
@@ -11,18 +11,22 @@ boot: manual
translations: true translations: true
ports: ports:
8000/tcp: 8000 8000/tcp: 8000
8002/tcp: 8002
ports_description: ports_description:
8000/tcp: "WebSocket服务端口" 8000/tcp: "WebSocket服务端口"
8002/tcp: "OTA设备激活升级固件端口"
map: map:
- addon_config:rw - addon_config:rw
host_network: false host_network: false
init: false init: false
watchdog: "tcp://[HOST]:[PORT:8000]" watchdog: "tcp://[HOST]:[PORT:8000]"
# webui: "http://[HOST]:[PORT:8002]"
journald: true journald: true
hassio_api: true
options: options:
plugins.home_assistant.base_url: http://homeassistant.local:8123 plugins.home_assistant.base_url: http://homeassistant.local:8123
plugins.home_assistant.api_key: "" plugins.home_assistant.api_key: ""
plugins.home_assistant.devices: [ ] plugins.home_assistant.devices: []
llm.type: DoubaoLLM llm.type: DoubaoLLM
model_name: "doubao-1-5-pro-32k-250115" model_name: "doubao-1-5-pro-32k-250115"
llm.api_key: "" llm.api_key: ""
@@ -38,6 +42,7 @@ options:
plugins.get_weather.default_location: 广州 plugins.get_weather.default_location: 广州
log_level: INFO log_level: INFO
timezone: Asia/Shanghai timezone: Asia/Shanghai
host_ip: "homeassistant.local"
schema: schema:
plugins.home_assistant.base_url: url plugins.home_assistant.base_url: url
plugins.home_assistant.api_key: str plugins.home_assistant.api_key: str
@@ -58,4 +63,5 @@ schema:
plugins.get_weather.default_location: str plugins.get_weather.default_location: str
log_level: list(INFO|DEBUG) log_level: list(INFO|DEBUG)
timezone: str timezone: str
host_ip: str?
image: r.hassbus.com/wghaos/xiaozhi-esp32-server-mini-{arch} image: r.hassbus.com/wghaos/xiaozhi-esp32-server-mini-{arch}

View File

@@ -1,3 +1,5 @@
## 0.3.12 (2025-04-28)
- 版本升级
## 0.3.11 (2025-04-27) ## 0.3.11 (2025-04-27)
- 版本升级 - 版本升级
## 0.3.4-20 (2025-04-25) ## 0.3.4-20 (2025-04-25)

View File

@@ -1,5 +1,5 @@
name: "小智 AI Server 最简化版" name: "小智 AI Server 最简化版"
version: "0.3.11" version: "0.3.12"
slug: "xiaozhi_esp32_server" slug: "xiaozhi_esp32_server"
description: "小智 AI Server 最简化版 - 提供语音识别、对话和控制功能支持与ESP32设备通信" description: "小智 AI Server 最简化版 - 提供语音识别、对话和控制功能支持与ESP32设备通信"
url: "https://gitcode.com/waxgourd/addons" url: "https://gitcode.com/waxgourd/addons"

View File

@@ -1,4 +1,4 @@
# 小智 AI OTA 管理 # 小智 AI 智控台
本加载项提供小智 ESP32 语音识别服务器功能,可与 ESP32 设备配合使用实现语音识别功能。 本加载项提供小智 ESP32 语音识别服务器功能,可与 ESP32 设备配合使用实现语音识别功能。
@@ -6,7 +6,7 @@
1. 在 Home Assistant 的加载项商店中添加此仓库地址或复制到本地加载项目录 1. 在 Home Assistant 的加载项商店中添加此仓库地址或复制到本地加载项目录
1. 安装 "Redis Server" 并配置 1. 安装 "Redis Server" 并配置
1. 安装 "Mysql"或"MariaDB" 并配置 1. 安装 "Mysql"或"MariaDB" 并配置
1. 安装 "小智 AI OTA 管理" 加载项 1. 安装 "小智 AI 智控台" 加载项
## 配置 ## 配置

View File

@@ -1,6 +1,6 @@
# 冬瓜甄选addons小智 AI OTA 管理 # 冬瓜甄选addons小智 AI 智控台
适用于 Home Assistant 的 小智 AI OTA 管理加载项。 适用于 Home Assistant 的 小智 AI 智控台 加载项。
## 使用方法 ## 使用方法

View File

@@ -1,7 +1,7 @@
name: "小智 AI OTA 管理" name: "小智 AI 智控台"
version: "0.3.12" version: "0.3.12"
slug: "xiaozhi_esp32_webui" slug: "xiaozhi_esp32_webui"
description: "小智 AI OTA 管理 - 提供语音识别、对话和控制功能支持与ESP32设备通信集成WEB管理界面" description: "小智 AI 智控台 - 提供语音识别、对话和控制功能支持与ESP32设备通信集成WEB管理界面"
url: "https://gitcode.com/waxgourd/addons" url: "https://gitcode.com/waxgourd/addons"
arch: arch:
- aarch64 - aarch64
@@ -32,7 +32,7 @@ schema:
mysql_port: port mysql_port: port
mysql_database: str mysql_database: str
mysql_username: str mysql_username: str
mysql_password: str mysql_password: password
redis_host: str redis_host: str
redis_port: port redis_port: port
timezone: str timezone: str