mirror of
https://github.com/mudler/LocalAI.git
synced 2024-12-19 04:37:53 +00:00
57ea7f81bb
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
13 lines
300 B
Bash
Executable File
13 lines
300 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
source $(dirname $0)/../common/libbackend.sh
|
|
|
|
# Download checkpoints if not present
|
|
if [ ! -d "checkpoints_v2" ]; then
|
|
wget https://myshell-public-repo-host.s3.amazonaws.com/openvoice/checkpoints_v2_0417.zip -O checkpoints_v2.zip
|
|
unzip checkpoints_v2.zip
|
|
fi
|
|
|
|
runUnittests
|