Fish-Speech / entrypoint.sh
pineconeT94's picture
init
8598b7e
raw
history blame contribute delete
167 Bytes
#!/bin/bash
CUDA_ENABLED=${CUDA_ENABLED:-true}
DEVICE=""
if [ "${CUDA_ENABLED}" != "true" ]; then
DEVICE="--device cpu"
fi
exec python tools/webui.py ${DEVICE}