[OpenSpec 与项目骨架]:完成实施型变更与 Python 基础骨架,包含 OpenSpec 工件、核心模型、配置边界和基础测试

This commit is contained in:
mkbk
2026-06-17 18:12:58 +08:00
commit 86ad0c86f2
21 changed files with 2410 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# Owner Voice Pet
Python desktop pet voice pipeline for the OpenSpec change `add-voice-pet-pipeline`.
The first implementation keeps secrets out of the repository. Configure runtime values with environment variables:
- `OWNER_LLM_BASE_URL`
- `OWNER_LLM_API_KEY`
- `OWNER_LLM_MODEL`
- `OWNER_LLM_API_STYLE`
Validation commands used by the change:
```bash
python3.11 -m compileall src tests
python3.11 -m unittest discover -s tests
openspec validate --all --strict
```