start scripts

This commit is contained in:
killian 2024-02-03 20:06:27 -08:00
parent da87851e80
commit 92e39b2432
2 changed files with 12 additions and 14 deletions

View File

@ -14,7 +14,7 @@ python computer/kernel_watcher.py &
# START RUN ENDPOINT
python computer/run.py
python computer/run.py &
# START SST AND TTS SERVICES

View File

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