mirror of
https://github.com/mudler/LocalAI.git
synced 2025-05-20 10:35:01 +00:00

* feat: create bash library to handle install/run/test of python backends Signed-off-by: Chris Jowett <421501+cryptk@users.noreply.github.com> * chore: minor cleanup Signed-off-by: Chris Jowett <421501+cryptk@users.noreply.github.com> * fix: remove incorrect LIMIT_TARGETS from parler-tts Signed-off-by: Chris Jowett <421501+cryptk@users.noreply.github.com> * fix: update runUnitests to handle running tests from a custom test file Signed-off-by: Chris Jowett <421501+cryptk@users.noreply.github.com> * chore: document runUnittests Signed-off-by: Chris Jowett <421501+cryptk@users.noreply.github.com> --------- Signed-off-by: Chris Jowett <421501+cryptk@users.noreply.github.com>
14 lines
406 B
Bash
Executable file
14 lines
406 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
VALL_E_X_VERSION=3faaf8ccadb154d63b38070caf518ce9309ea0f4
|
|
|
|
source $(dirname $0)/../common/libbackend.sh
|
|
|
|
installRequirements
|
|
|
|
git clone https://github.com/Plachtaa/VALL-E-X.git ${MY_DIR}/source
|
|
pushd ${MY_DIR}/source && git checkout -b build ${VALL_E_X_VERSION} && popd
|
|
uv pip install ${BUILD_ISOLATION_FLAG} --requirement ${MY_DIR}/source/requirements.txt
|
|
|
|
cp -v ./*py $MY_DIR/source/
|