- 新增完整的 Home Assistant 集成示例,支持文本对话与上下文会话 - 实现小爱音箱事件解析与 TTS 播报,支持实时打断功能 - 添加连续会话管理,支持区域上下文注入和会话超时结束 - 提供完整的配置系统、类型定义和错误处理 - 包含 Rust 扩展模块用于小爱音箱通信,支持音频流处理 - 添加单元测试、集成测试脚本和 Docker 部署支持 - 提供详细的使用文档和配置说明
51 lines
527 B
Plaintext
51 lines
527 B
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# Dependencies
|
|
node_modules
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Local env files
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Testing
|
|
coverage
|
|
temp
|
|
|
|
# Turbo
|
|
.turbo
|
|
|
|
# Vercel
|
|
.vercel
|
|
|
|
# Build Outputs
|
|
.next/
|
|
out/
|
|
build
|
|
dist
|
|
target
|
|
|
|
|
|
# Debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Python
|
|
.venv
|
|
.mypy_cache
|
|
__pycache__
|
|
*.egg-info
|
|
|
|
# Misc
|
|
.DS_Store
|
|
*.pem
|
|
.mi.json
|
|
xiaozhi.json
|
|
open-xiaoai.node
|
|
examples/hass/config.json
|