Made Agent more Graceful

This commit is contained in:
2025-04-30 02:44:41 -06:00
parent 119507a4ad
commit c4ce9a6bd1
3 changed files with 15 additions and 11 deletions

View File

@ -97,7 +97,7 @@ launch_server() {
source "${venvFolder}/bin/activate"
run_step "Install Python Dependencies" bash -c "
pip install -q -r '${dataSource}/server-requirements.txt'
pip install --disable-pip-version-check -q -r '${dataSource}/server-requirements.txt'
"
run_step "Install React Dependencies" bash -c "
@ -143,7 +143,7 @@ launch_agent() {
source "${venvFolder}/bin/activate"
run_step "Install Python Dependencies for Agent" bash -c "
pip install -q -r '${agentRequirements}'
pip install --disable-pip-version-check -q -r '${agentRequirements}'
"
echo -e "\n${GREEN}Launching Borealis Agent...${RESET}"