mirror of
https://github.com/mudler/LocalAI.git
synced 2026-09-13 06:45:26 -04:00
Add a dedicated Python gRPC backend for aiola Whisper-Medusa checkpoints, including mono 16 kHz preprocessing, bounded clip validation, CPU/CUDA 12 images, backend gallery metadata, and user documentation. Assisted-by: Codex:gpt-5 Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
10 lines
202 B
Bash
Executable File
10 lines
202 B
Bash
Executable File
#!/bin/bash
|
|
backend_dir=$(dirname "$0")
|
|
if [ -d "$backend_dir/common" ]; then
|
|
source "$backend_dir/common/libbackend.sh"
|
|
else
|
|
source "$backend_dir/../common/libbackend.sh"
|
|
fi
|
|
|
|
startBackend "$@"
|