Add separate STT and LLM test commands

This commit is contained in:
2026-05-03 00:44:26 +09:00
parent 48937c684b
commit 7e59013fa4
9 changed files with 274 additions and 22 deletions

View File

@@ -4,9 +4,13 @@
"private": true,
"type": "module",
"scripts": {
"start:loopback": "bun src/index.ts loopback",
"setup": "bun src/setup.ts",
"setup:stt": "bun src/setup-python.ts",
"setup:llm": "bun src/setup-llm.ts",
"setup:python": "bun run setup:stt",
"test:stt": "bun src/index.ts test-stt",
"test:llm": "bun src/index.ts test-llm",
"devices": "bun src/index.ts devices",
"setup:python": "bun src/setup-python.ts",
"check": "tsc --noEmit",
"build": "tsc -p tsconfig.json"
},