From 92e39b243240d18f466455f2be42bdf136672ff0 Mon Sep 17 00:00:00 2001 From: killian <63927363+KillianLucas@users.noreply.github.com> Date: Sat, 3 Feb 2024 20:06:27 -0800 Subject: [PATCH] start scripts --- OS/01/start_linux.sh | 2 +- OS/01/start_osx.sh | 24 +++++++++++------------- 2 files changed, 12 insertions(+), 14 deletions(-) diff --git a/OS/01/start_linux.sh b/OS/01/start_linux.sh index 41c5ce3..0b60c83 100755 --- a/OS/01/start_linux.sh +++ b/OS/01/start_linux.sh @@ -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 diff --git a/OS/01/start_osx.sh b/OS/01/start_osx.sh index 40132fa..52fb432 100755 --- a/OS/01/start_osx.sh +++ b/OS/01/start_osx.sh @@ -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 - -python core/start_core.py & - - -### INTERFACE +# START ASSISTANT -# 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) -open interface/display.html \ No newline at end of file +python user/user.py & \ No newline at end of file