start script
This commit is contained in:
parent
92e39b2432
commit
a9196c6f2a
|
@ -2,7 +2,6 @@ git+https://github.com/KillianLucas/open-interpreter.git
|
||||||
asyncio
|
asyncio
|
||||||
pyaudio
|
pyaudio
|
||||||
pynput
|
pynput
|
||||||
redis
|
|
||||||
fastapi
|
fastapi
|
||||||
uvicorn
|
uvicorn
|
||||||
websockets
|
websockets
|
||||||
|
|
|
@ -2,8 +2,10 @@
|
||||||
|
|
||||||
# INSTALL REQUIREMENTS
|
# INSTALL REQUIREMENTS
|
||||||
|
|
||||||
sudo apt-get update
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
||||||
sudo apt-get install redis-server
|
brew update
|
||||||
|
brew install portaudio ffmpeg
|
||||||
|
fi
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
|
||||||
### COMPUTER
|
### COMPUTER
|
|
@ -1,37 +0,0 @@
|
||||||
### SETUP
|
|
||||||
|
|
||||||
# INSTALL REQUIREMENTS
|
|
||||||
|
|
||||||
brew update
|
|
||||||
brew install portaudio ffmpeg
|
|
||||||
pip install -r requirements.txt
|
|
||||||
|
|
||||||
### COMPUTER
|
|
||||||
|
|
||||||
# START KERNEL WATCHER
|
|
||||||
|
|
||||||
python computer/kernel_watcher.py &
|
|
||||||
|
|
||||||
# START RUN ENDPOINT
|
|
||||||
|
|
||||||
python computer/run.py &
|
|
||||||
|
|
||||||
# START SST AND TTS SERVICES
|
|
||||||
|
|
||||||
# (todo)
|
|
||||||
# (i think we should start with hosted services)
|
|
||||||
|
|
||||||
# START LLM
|
|
||||||
|
|
||||||
# (disabled, we'll start with hosted services)
|
|
||||||
# python core/llm/start.py &
|
|
||||||
|
|
||||||
# START ASSISTANT
|
|
||||||
|
|
||||||
python assistant/assistant.py &
|
|
||||||
|
|
||||||
### USER
|
|
||||||
|
|
||||||
# START USER
|
|
||||||
|
|
||||||
python user/user.py &
|
|
Loading…
Reference in New Issue