start script
This commit is contained in:
parent
92e39b2432
commit
a9196c6f2a
|
@ -2,7 +2,6 @@ git+https://github.com/KillianLucas/open-interpreter.git
|
|||
asyncio
|
||||
pyaudio
|
||||
pynput
|
||||
redis
|
||||
fastapi
|
||||
uvicorn
|
||||
websockets
|
||||
|
|
|
@ -2,8 +2,10 @@
|
|||
|
||||
# INSTALL REQUIREMENTS
|
||||
|
||||
sudo apt-get update
|
||||
sudo apt-get install redis-server
|
||||
if [[ "$OSTYPE" == "darwin"* ]]; then
|
||||
brew update
|
||||
brew install portaudio ffmpeg
|
||||
fi
|
||||
pip install -r requirements.txt
|
||||
|
||||
### 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