mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-04-21 14:52:20 +00:00
17 lines
287 B
Bash
17 lines
287 B
Bash
|
#!/bin/bash
|
||
|
set -e -o pipefail -u
|
||
|
|
||
|
export ENV_FILEPATH=$(mktemp)
|
||
|
|
||
|
trap "rm -f ${ENV_FILEPATH}" EXIT
|
||
|
|
||
|
touch $ENV_FILEPATH
|
||
|
|
||
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
||
|
|
||
|
${SCRIPT_DIR}/tgi_env.py $@
|
||
|
|
||
|
source $ENV_FILEPATH
|
||
|
|
||
|
exec text-generation-launcher $@
|