|
|
@ -6,11 +6,15 @@ brew update
|
|
|
|
brew install portaudio ffmpeg
|
|
|
|
brew install portaudio ffmpeg
|
|
|
|
pip install -r requirements.txt
|
|
|
|
pip install -r requirements.txt
|
|
|
|
|
|
|
|
|
|
|
|
### CORE
|
|
|
|
### COMPUTER
|
|
|
|
|
|
|
|
|
|
|
|
# START KERNEL WATCHER
|
|
|
|
# START KERNEL WATCHER
|
|
|
|
|
|
|
|
|
|
|
|
python core/kernel_watcher.py &
|
|
|
|
python computer/kernel_watcher.py &
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# START RUN ENDPOINT
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
python computer/run.py &
|
|
|
|
|
|
|
|
|
|
|
|
# START SST AND TTS SERVICES
|
|
|
|
# START SST AND TTS SERVICES
|
|
|
|
|
|
|
|
|
|
|
@ -22,18 +26,12 @@ python core/kernel_watcher.py &
|
|
|
|
# (disabled, we'll start with hosted services)
|
|
|
|
# (disabled, we'll start with hosted services)
|
|
|
|
# python core/llm/start.py &
|
|
|
|
# python core/llm/start.py &
|
|
|
|
|
|
|
|
|
|
|
|
# START CORE
|
|
|
|
# START ASSISTANT
|
|
|
|
|
|
|
|
|
|
|
|
python core/start_core.py &
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### INTERFACE
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# START INTERFACE
|
|
|
|
python assistant/assistant.py &
|
|
|
|
|
|
|
|
|
|
|
|
python interface/interface.py &
|
|
|
|
### USER
|
|
|
|
|
|
|
|
|
|
|
|
# START DISPLAY
|
|
|
|
# START USER
|
|
|
|
|
|
|
|
|
|
|
|
# (this should be changed to run it in fullscreen / kiosk mode)
|
|
|
|
python user/user.py &
|
|
|
|
open interface/display.html
|
|
|
|
|