Add Python client placeholders for bundle build (full impl in Plan 3)

This commit is contained in:
2026-06-11 19:04:18 +00:00
parent 751030dcef
commit a7e5e13ac8
5 changed files with 27 additions and 0 deletions
View File
+9
View File
@@ -0,0 +1,9 @@
"""Smart Assistant client entry point. Implemented in Plan 3."""
def main() -> None:
raise SystemExit("client.main: placeholder; full implementation comes in Plan 3.")
if __name__ == "__main__":
main()
+9
View File
@@ -0,0 +1,9 @@
"""Smart Assistant pairing CLI. Implemented in Plan 3."""
def main() -> None:
raise SystemExit("client.pair: placeholder; full implementation comes in Plan 3.")
if __name__ == "__main__":
main()
+1
View File
@@ -0,0 +1 @@
openwakeword==0.6.0
+8
View File
@@ -0,0 +1,8 @@
sounddevice==0.5.1
numpy>=2.0
scipy>=1.13
onnxruntime>=1.18
scikit-learn
tqdm
requests
websockets>=12.0