feat: Add speech-to-text example and documentation

- Create comprehensive README for speech-to-text integration
- Implement example script demonstrating wake word detection and transcription
- Add Windows batch script for MCP server startup
- Include detailed usage instructions, customization options, and troubleshooting guide
This commit is contained in:
jango-blockchained
2025-02-05 20:32:07 +01:00
parent d45ef5c622
commit ea6efd553d
3 changed files with 0 additions and 0 deletions

View File

@@ -1,21 +0,0 @@
@echo off
setlocal
:: Set environment variables
set NODE_ENV=production
:: Change to the script's directory
cd /d "%~dp0"
cd ..
:: Start the MCP server
echo Starting Home Assistant MCP Server...
bun run start --port 8080
if errorlevel 1 (
echo Error starting MCP server
pause
exit /b 1
)
pause