[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
+35
View File
@@ -0,0 +1,35 @@
from __future__ import annotations
import argparse
import json
from .config import AppConfig
def main(argv: list[str] | None = None) -> int:
parser = argparse.ArgumentParser(prog="owner-voice-pet")
parser.add_argument("--show-config", action="store_true", help="Print non-secret config summary")
args = parser.parse_args(argv)
if args.show_config:
config = AppConfig.from_env()
print(
json.dumps(
{
"wake_word": config.wake_word,
"sample_rate": config.sample_rate,
"channels": config.channels,
"llm_base_url": config.llm_base_url,
"llm_model": config.llm_model,
"llm_api_style": config.llm_api_style,
"llm_api_key_present": bool(config.llm_api_key),
"asset_dir": str(config.asset_dir),
},
ensure_ascii=False,
sort_keys=True,
)
)
return 0
parser.print_help()
return 0